contextmenu.css
9 months ago
dialog.css
9 months ago
icons.css
9 months ago
main.css
9 months ago
navbar.css
9 months ago
reset.css
9 months ago
statusbar.css
9 months ago
theme.css
9 months ago
toolbar.css
9 months ago
view-list.css
9 months ago
view-thumbnail.css
9 months ago
navbar.css
73 lines
| 1 | /* navbar.css */ |
| 2 | /* Main wrapper for navbar */ |
| 3 | .elfinder .elfinder-navbar { |
| 4 | border-right: 1px solid #e5e5e5; |
| 5 | } |
| 6 | |
| 7 | /* Directories */ |
| 8 | .elfinder .elfinder-navbar .elfinder-navbar-dir { |
| 9 | color: #000; |
| 10 | border-radius: 0; |
| 11 | } |
| 12 | |
| 13 | /* Hovered directory */ |
| 14 | .elfinder .elfinder-navbar .elfinder-navbar-dir:hover { |
| 15 | background: #e5f3ff; |
| 16 | } |
| 17 | |
| 18 | /* Current/active directory (cwd) */ |
| 19 | .elfinder .elfinder-navbar .elfinder-navbar-dir.ui-state-active { |
| 20 | background: #cce8ff; |
| 21 | border: 1px solid #99d1ff; |
| 22 | } |
| 23 | |
| 24 | /* Howvered cwd */ |
| 25 | .elfinder .elfinder-navbar .elfinder-navbar-dir.ui-state-active:hover { |
| 26 | /* */ |
| 27 | } |
| 28 | |
| 29 | /* Icons */ |
| 30 | /* Arrow */ |
| 31 | .elfinder .elfinder-navbar .elfinder-navbar-arrow { |
| 32 | /* */ |
| 33 | background-image: url('../images/16px/arrow_right.png'); |
| 34 | background-position: center center; |
| 35 | background-repeat: no-repeat; |
| 36 | } |
| 37 | |
| 38 | /* Expanded directory arrow */ |
| 39 | .elfinder .elfinder-navbar-expanded .elfinder-navbar-arrow { |
| 40 | /* */ |
| 41 | background-image: url('../images/16px/arrow_down.png'); |
| 42 | background-position: center center; |
| 43 | background-repeat: no-repeat; |
| 44 | } |
| 45 | |
| 46 | /* All icons (directories) */ |
| 47 | .elfinder .elfinder-navbar .elfinder-navbar-icon { |
| 48 | background-color: transparent; |
| 49 | background-image: url('../images/16px/directory.png') !important; |
| 50 | background-position: center center; |
| 51 | background-repeat: none; |
| 52 | height: 16px; |
| 53 | width: 16px; |
| 54 | } |
| 55 | /* Expanded directory */ |
| 56 | .elfinder .elfinder-navbar-expanded.ui-state-active .elfinder-navbar-icon { |
| 57 | background-image: url('../images/16px/directory_opened.png') !important; |
| 58 | } |
| 59 | /* Root/volume */ |
| 60 | .elfinder .elfinder-navbar-root > .elfinder-navbar-icon { |
| 61 | /* */ |
| 62 | } |
| 63 | |
| 64 | /* Root/volume expanded */ |
| 65 | .elfinder .elfinder-navbar-root.elfinder-navbar-expanded > .elfinder-navbar-icon { |
| 66 | /* */ |
| 67 | } |
| 68 | |
| 69 | /* Resizable handle */ |
| 70 | .elfinder .elfinder-navbar .ui-resizable-handle.ui-resizable-e { |
| 71 | /* */ |
| 72 | } |
| 73 |