parent
436e138895
commit
37accb230d
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -16,10 +16,10 @@
|
|||||||
color: #34345C;
|
color: #34345C;
|
||||||
}
|
}
|
||||||
:root.burichan #custom-board-list .current {
|
:root.burichan #custom-board-list .current {
|
||||||
border-bottom: 1px solid #2F4DC6;
|
border-bottom: 1px solid rgba(30, 30, 255, 0.2);
|
||||||
}
|
}
|
||||||
:root.burichan #custom-board-list .current:hover {
|
:root.burichan #custom-board-list .current:hover {
|
||||||
border-bottom-color: #ff0000;
|
border-bottom-color: rgba(255,0,0,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
@ -50,7 +50,6 @@
|
|||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
:root.burichan .entry {
|
:root.burichan .entry {
|
||||||
border-bottom: 1px solid #B7C5D9;
|
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
:root.burichan .focused.entry {
|
:root.burichan .focused.entry {
|
||||||
|
|||||||
@ -16,10 +16,10 @@
|
|||||||
color: #800000;
|
color: #800000;
|
||||||
}
|
}
|
||||||
:root.futaba #custom-board-list a.current {
|
:root.futaba #custom-board-list a.current {
|
||||||
border-bottom: 1px solid #b20000;
|
border-bottom: 1px solid rgba(178,0,0,0.2);
|
||||||
}
|
}
|
||||||
:root.futaba #custom-board-list .current:hover {
|
:root.futaba #custom-board-list .current:hover {
|
||||||
border-bottom-color: #ff0000;
|
border-bottom-color: rgba(255,0,0,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
@ -50,7 +50,6 @@
|
|||||||
color: #800000;
|
color: #800000;
|
||||||
}
|
}
|
||||||
:root.futaba .entry {
|
:root.futaba .entry {
|
||||||
border-bottom: 1px solid #D9BFB7;
|
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
:root.futaba .focused.entry {
|
:root.futaba .focused.entry {
|
||||||
|
|||||||
@ -16,10 +16,10 @@
|
|||||||
color: #FF6600;
|
color: #FF6600;
|
||||||
}
|
}
|
||||||
:root.photon #custom-board-list a.current {
|
:root.photon #custom-board-list a.current {
|
||||||
border-bottom: 1px solid #004A99;
|
border-bottom: 1px solid rgba(0,74,153,0.2);
|
||||||
}
|
}
|
||||||
:root.photon #custom-board-list .current:hover {
|
:root.photon #custom-board-list .current:hover {
|
||||||
border-bottom-color: #FF3300;
|
border-bottom-color: rgba(255,51,0,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
@ -50,7 +50,6 @@
|
|||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
:root.photon .entry {
|
:root.photon .entry {
|
||||||
border-bottom: 1px solid #CCC;
|
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
:root.photon .focused.entry {
|
:root.photon .focused.entry {
|
||||||
|
|||||||
@ -2,7 +2,6 @@
|
|||||||
.dialog {
|
.dialog {
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0;
|
|
||||||
}
|
}
|
||||||
.dialog:not(#qr):not(#thread-watcher):not(#header-bar) {
|
.dialog:not(#qr):not(#thread-watcher):not(#header-bar) {
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
|
box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
|
||||||
@ -1073,12 +1072,16 @@ a:only-of-type > .remove {
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
#menu, .submenu {
|
||||||
|
border-radius: 3px;
|
||||||
|
padding-top: 1px;
|
||||||
|
padding-bottom: 3px;
|
||||||
|
}
|
||||||
.entry {
|
.entry {
|
||||||
border-bottom: 1px solid rgba(0,0,0,.25);
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: block;
|
display: block;
|
||||||
outline: none;
|
outline: none;
|
||||||
padding: 3px 7px;
|
padding: 2px 10px;
|
||||||
position: relative;
|
position: relative;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@ -1087,8 +1090,11 @@ a:only-of-type > .remove {
|
|||||||
.left>.entry.has-submenu {
|
.left>.entry.has-submenu {
|
||||||
padding-right: 17px !important;
|
padding-right: 17px !important;
|
||||||
}
|
}
|
||||||
.entry:last-child {
|
.entry input[type="checkbox"],
|
||||||
border-bottom: 0;
|
.entry input[type="radio"] {
|
||||||
|
margin: 0px;
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
}
|
}
|
||||||
.has-submenu::after {
|
.has-submenu::after {
|
||||||
content: "";
|
content: "";
|
||||||
@ -1109,6 +1115,8 @@ a:only-of-type > .remove {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
left: 100%;
|
left: 100%;
|
||||||
top: -1px;
|
top: -1px;
|
||||||
|
margin-left: 0px;
|
||||||
|
margin-top: -2px;
|
||||||
}
|
}
|
||||||
.focused > .submenu {
|
.focused > .submenu {
|
||||||
display: block;
|
display: block;
|
||||||
|
|||||||
@ -13,10 +13,10 @@
|
|||||||
color: #81A2BE;
|
color: #81A2BE;
|
||||||
}
|
}
|
||||||
:root.tomorrow #custom-board-list a.current {
|
:root.tomorrow #custom-board-list a.current {
|
||||||
border-bottom: 1px solid #537ca0;
|
border-bottom: 1px solid rgba(83,124,160,0.4);
|
||||||
}
|
}
|
||||||
:root.tomorrow #custom-board-list .current:hover {
|
:root.tomorrow #custom-board-list .current:hover {
|
||||||
border-bottom-color: #5F89AC;
|
border-bottom-color: rgba(95,137,172,0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
@ -56,7 +56,6 @@
|
|||||||
color: #C5C8C6;
|
color: #C5C8C6;
|
||||||
}
|
}
|
||||||
:root.tomorrow .entry {
|
:root.tomorrow .entry {
|
||||||
border-bottom: 1px solid #111;
|
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
:root.tomorrow .focused.entry {
|
:root.tomorrow .focused.entry {
|
||||||
|
|||||||
@ -16,10 +16,10 @@
|
|||||||
color: #34345C;
|
color: #34345C;
|
||||||
}
|
}
|
||||||
:root.yotsuba-b #custom-board-list .current {
|
:root.yotsuba-b #custom-board-list .current {
|
||||||
border-bottom: 1px solid #2F4DC6;
|
border-bottom: 1px solid rgba(30, 30, 255, 0.2);
|
||||||
}
|
}
|
||||||
:root.yotsuba-b #custom-board-list .current:hover {
|
:root.yotsuba-b #custom-board-list .current:hover {
|
||||||
border-bottom-color: #ff0000;
|
border-bottom-color: rgba(255,0,0,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
@ -50,7 +50,6 @@
|
|||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
:root.yotsuba-b .entry {
|
:root.yotsuba-b .entry {
|
||||||
border-bottom: 1px solid #B7C5D9;
|
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
:root.yotsuba-b .focused.entry {
|
:root.yotsuba-b .focused.entry {
|
||||||
|
|||||||
@ -16,10 +16,10 @@
|
|||||||
color: #800000;
|
color: #800000;
|
||||||
}
|
}
|
||||||
:root.yotsuba #custom-board-list a.current {
|
:root.yotsuba #custom-board-list a.current {
|
||||||
border-bottom: 1px solid #b20000;
|
border-bottom: 1px solid rgba(178,0,0,0.2);
|
||||||
}
|
}
|
||||||
:root.yotsuba #custom-board-list .current:hover {
|
:root.yotsuba #custom-board-list .current:hover {
|
||||||
border-bottom-color: #ff0000;
|
border-bottom-color: rgba(255,0,0,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
@ -50,7 +50,6 @@
|
|||||||
color: #800000;
|
color: #800000;
|
||||||
}
|
}
|
||||||
:root.yotsuba .entry {
|
:root.yotsuba .entry {
|
||||||
border-bottom: 1px solid #D9BFB7;
|
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
:root.yotsuba .focused.entry {
|
:root.yotsuba .focused.entry {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user