README.md
1 year ago
contextmenu.css
1 year ago
dialog.css
1 year ago
icons.css
1 year ago
main.css
1 year ago
navbar.css
1 year ago
reset.css
1 year ago
statusbar.css
1 year ago
theme.css
1 year ago
toolbar.css
1 year ago
view-list.css
1 year ago
view-thumbnail.css
1 year ago
contextmenu.css
43 lines
| 1 | /* contextmenu.css */ |
| 2 | /* **Note** that the context menu is NOT inside the main elfinder div */ |
| 3 | /* Context menu wrapper */ |
| 4 | .elfinder-contextmenu, |
| 5 | .elfinder-contextmenu-sub, |
| 6 | .elfinder-button-menu { |
| 7 | font-size: 16px; |
| 8 | font-family: 'Open Sans', sans-serif; |
| 9 | background: #fff!important; |
| 10 | border: 1px solid #b5b5b5!important; |
| 11 | box-shadow: 0 0 5px #cdcdcd!important; |
| 12 | border-radius: 0; |
| 13 | padding: 3px 3px 0 3px; |
| 14 | } |
| 15 | |
| 16 | /* Menu item */ |
| 17 | .elfinder-contextmenu .elfinder-contextmenu-item, |
| 18 | .elfinder-button-menu .elfinder-button-menu-item { |
| 19 | margin: 0 0 3px 0; |
| 20 | } |
| 21 | |
| 22 | /* Hovered menu item */ |
| 23 | .elfinder-contextmenu .elfinder-contextmenu-item:hover, |
| 24 | .elfinder-button-menu .elfinder-button-menu-item:hover { |
| 25 | background: #dedddc; |
| 26 | color: #000; |
| 27 | } |
| 28 | |
| 29 | /* Item icon */ |
| 30 | .elfinder-contextmenu .elfinder-contextmenu-item .elfinder-contextmenu-icon { |
| 31 | /* */ |
| 32 | } |
| 33 | |
| 34 | /* Separator */ |
| 35 | .elfinder-contextmenu .elfinder-contextmenu-separator { |
| 36 | background: #e2e3e4; |
| 37 | height: 1px; |
| 38 | margin: 1px; |
| 39 | } |
| 40 | |
| 41 | .elfinder-contextmenu .elfinder-button-icon-open + span { |
| 42 | font-weight: bold; |
| 43 | } |