|
|
@@ -345,4 +345,52 @@ input[type=text].func-param {
|
|
|
.editor-row {
|
|
|
padding: 5px;
|
|
|
}
|
|
|
+}
|
|
|
+
|
|
|
+.scrollable {
|
|
|
+ max-height: 300px;
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+//
|
|
|
+// Srollbars
|
|
|
+//
|
|
|
+
|
|
|
+::-webkit-scrollbar {
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+::-webkit-scrollbar:hover {
|
|
|
+ height: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+::-webkit-scrollbar-button:start:decrement,
|
|
|
+::-webkit-scrollbar-button:end:increment { display: none; }
|
|
|
+::-webkit-scrollbar-button:horizontal:decrement { display: none; }
|
|
|
+::-webkit-scrollbar-button:horizontal:increment { display: none; }
|
|
|
+::-webkit-scrollbar-button:vertical:decrement { display: none; }
|
|
|
+::-webkit-scrollbar-button:vertical:increment { display: none; }
|
|
|
+::-webkit-scrollbar-button:horizontal:decrement:active { background-image: none; }
|
|
|
+::-webkit-scrollbar-button:horizontal:increment:active { background-image: none; }
|
|
|
+::-webkit-scrollbar-button:vertical:decrement:active { background-image: none; }
|
|
|
+::-webkit-scrollbar-button:vertical:increment:active {background-image: none; }
|
|
|
+
|
|
|
+::-webkit-scrollbar-track-piece { background-color: grayDark; }
|
|
|
+
|
|
|
+::-webkit-scrollbar-thumb:vertical {
|
|
|
+ height: 50px;
|
|
|
+ background: -webkit-gradient(linear, left top, right top, color-stop(0%, #3a3a3a), color-stop(100%, #222222));
|
|
|
+ border: 1px solid #0d0d0d;
|
|
|
+ border-top: 1px solid #666666;
|
|
|
+ border-left: 1px solid #666666;
|
|
|
+}
|
|
|
+
|
|
|
+::-webkit-scrollbar-thumb:horizontal {
|
|
|
+ width: 50px;
|
|
|
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3a3a3a), color-stop(100%, #222222));
|
|
|
+ border: 1px solid #1f1f1f;
|
|
|
+ border-top: 1px solid #666666;
|
|
|
+ border-left: 1px solid #666666;
|
|
|
}
|