|
@@ -297,13 +297,24 @@ select {
|
|
|
#resizer {
|
|
|
position: absolute;
|
|
|
top: 32px;
|
|
|
- right: 345px;
|
|
|
+ right: 350px;
|
|
|
width: 5px;
|
|
|
bottom: 0px;
|
|
|
- /* background-color: rgba(255,0,0,0.5); */
|
|
|
+ transform: translatex(2.5px);
|
|
|
cursor: col-resize;
|
|
|
}
|
|
|
|
|
|
+ #resizer:hover {
|
|
|
+ background-color: #08f8;
|
|
|
+ transition-property: background-color;
|
|
|
+ transition-delay: 0.1s;
|
|
|
+ transition-duration: 0.2s;
|
|
|
+ }
|
|
|
+
|
|
|
+ #resizer:active {
|
|
|
+ background-color: #08f;
|
|
|
+ }
|
|
|
+
|
|
|
#viewport {
|
|
|
position: absolute;
|
|
|
top: 32px;
|