| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .menubar {
- height: 19px;
- font-size: 12px;
- font-family: 'Charcoal';
- background-color: #dedede;
- box-shadow: inset -1px -1px #9c9c9c, inset 1px 1px #fff;
- border-bottom: 1px solid #000;
- image-rendering: pixelated;
- }
- .menubar .corner {
- margin: -5px 0 0 0;
- }
- .menubar .active-application, .menubar .clock {
- margin: 2px 7px 0 8px;
- }
- .menubar .active-application img {
- vertical-align: middle;
- margin-bottom: 2px;
- margin-right: 5px;
- }
- .menu > .title {
- padding: 1px 7px 0 8px;
- /* Need a border so items don't move when they are active */
- border-top: 1px solid #fff;
- }
- .menu > .title.icon {
- background-position: center;
- background-repeat: no-repeat;
- }
- .menu-items > .icon {
- background-origin: content-box;
- background-repeat: no-repeat;
- text-indent: 20px;
- }
- .menu > .title.active {
- background-color: #31319c;
- color: #fff;
- border-top: 1px solid #6262cd;
- border-bottom: 1px solid #00008b;
- }
- .menu .menu-items {
- z-index: 100;
- position: absolute;
- white-space: nowrap;
- background-color: #dedede;
- border: 1px #000 solid;
- box-shadow: 1px 1px #111, inset 1px 1px #fff, inset -1px -1px #999;
- }
- .submenu .title {
- display: flex;
- justify-content: space-between;
- flex-grow: 1;
- }
- .submenu .arrow {
- margin-right: -5px;
- }
- .menu-items > div {
- display: flex;
- justify-content: space-between;
- padding: 0 8px 0 20px;
- color: #000;
- /* Need a border so items don't move when they are active */
- border-left: 1px solid #fff;
- border-right: 1px solid #9c9c9c;
- }
- .menu-items .checked {
- position: absolute;
- left: 5px;
- background-image: url("../img/ui/widgets/checkmark.png");
- background-repeat: no-repeat;
- background-position: center;
- }
- .menu-items img {
- vertical-align: middle;
- margin: 0 5px 0 0;
- }
- .menu-items > .active {
- background-color: #31319c;
- color: #fff;
- border-left: 1px solid #6262cd;
- border-right: 1px solid #00008b;
- }
- .menu-items .disabled {
- color: #737373;
- }
- .menu-items .shortcut {
- display: flex;
- padding-left: 15px;
- }
- .menu-items .shortcut .symbol {
- /* positions the Command character properly */
- margin-top: 1px;
- padding-right: 1px;
- font-size: 10px;
- }
- .menu-items .shortcut .char {
- width: 1em;
- height: 1em;
- }
- .menu-items .separator {
- height: 2px;
- margin: 2px 0 1px 0;
- box-shadow: inset 0 1px #999, inset 0 -1px #fff;
- }
|