Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style views and category-list #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
150 changes: 71 additions & 79 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ body {
font-family: Open Sans;
text-shadow: none;
}
:root {
--menu-color: #ccc;
--menu-border-color: #333;
--menu-background-color: #222;

--menu-disabled-color: #333333;

--menu-highlight-color: #757571;
--menu-highlight-background-color: #cfdeef;

--settings-background-color: #2a2a2a;
}

div#preload {
width: 0px;
Expand Down Expand Up @@ -439,6 +451,7 @@ select[disabled] {
color: black;
}

button,
input.Button0,
input[type="button"],
input.Button {
Expand All @@ -456,120 +469,99 @@ input.Button {
text-shadow: none;
}

input.Button:hover,
input.Button:focus,
button:not([disabled]):hover,
button:not([disabled]):focus,
button:not([disabled]):hover:active,
input.Button:not([disabled]):hover,
input.Button:not([disabled]):focus,
input.Button:not([disabled]):hover:active,
input[type="button"]:hover
input[type="button"]:focus {
input[type="button"]:focus
input[type="button"]:active {
background: #3a3a3a none repeat scroll 0 0;
text-shadow: 0 0 4px #999;
color: #999;
}

div#CatList {
border: none;
background-color: #fff;
border-right: 1px solid #ccc;
border-left: 1px solid #ccc;
}

div#CatList ul {}

div#CatList ul li span {
color: #67809F
}

div#CatList ul li.sel span {
color: #2782cf
}

div#CatList {
#CatList, category-list {
background-color: #222;
border: 1px solid #222;
}

div#CatList .label-prefix {
font-size: 20px;
}

div#CatList ul li {
background-repeat: no-repeat;
cursor: pointer;
font-family: Open Sans;
category-panel {
font-size: 12px;
line-height: 16px;
margin: 0;
padding: 4px 9px;
}

div#CatList ul li:hover {
background-color: #303030;
}

div#CatList ul li.sel {
background-color: #303030;
border: 1px solid #313131;
color: #009ddd;
font-style: italic;
text-shadow: none;
}

.label-icon {
background-image: url(./images/status_icons.png);
background-position: 0px -534px;
min-width: 18px;
min-height: 18px;
}

.label-count, .label-size {
background-color: #2a2a2a;
color: #A0A0A0;
font-family: Open Sans;
--open-background-image: url(../plugins/theme/themes/club-QuickBox/images/pnl_open.gif);
--close-background-image: url(../plugins/theme/themes/club-QuickBox/images/pnl_close.gif);
}

.catpanel {
background: #222 url("./images/pnl_open.gif") no-repeat scroll 0 0;
border-bottom: medium none;
border-right: medium none;
category-panel::part(heading) {
background-color: #273238;
border-top: 1px solid #2a2a2a;
color: #ccc;
font-family: inherit;
font-size: 14px;
font-weight: bold;
height: 25px;
line-height: 25px;
padding: 2px 28px;
text-shadow: none;
}

.-_-_-all-_-_- .label-icon, #-_-_-all-_-_- .label-icon {
background-position: 0px -305px;
panel-label {
color:#FFF;
border:none;
padding: 4px 9px;
line-height: 16px;
border: 1px solid #1A2329;
background-color: #1A2329;
--prefix-color: #FFF;
--prefix-fontsize: 20px;
--badge-color: #A0A0A0;
--badge-background-color: #2a2a2a;
--icon-offset: 0px -534px;
--status-image: url(../plugins/theme/themes/club-QuickBox/images/status_icons.png);
--icon-size: 18px;
}

panel-label:hover {
background-color: #303030;
}

#-_-_-dls-_-_- .label-icon {
background-position: 0px 0px;
panel-label[selected] {
border: 1px solid #313131;
background-color: #303030;
color: #009ddd;
}

panel-label[icon=all] {
--icon-offset: 0px -305px;
}
panel-label[icon=down] {
--icon-offset: 0px 0px;
}

#-_-_-com-_-_- .label-icon {
background-position: 0px -30px;
panel-label[icon=completed] {
--icon-offset: 0px -30px;
}

#-_-_-act-_-_- .label-icon {
background-position: 0px -278px;
panel-label[icon=up-down] {
--icon-offset: 0px -278px;
}

#-_-_-iac-_-_- .label-icon {
background-position: 0px -57px;
panel-label[icon=incompleted] {
--icon-offset: 0px -57px;
}

#-_-_-err-_-_- .label-icon {
background-position: 0px -169px;
panel-label[icon=error] {
--icon-offset: 0px -169px;
}

#-_-_-nlb-_-_- .label-icon {
background-position: 0px -644px;
panel-label[icon=no-label] {
--icon-offset: 0px -644px;
}

.RSS .label-icon, .disRSS .label-icon, .RSSGroup .label-icon {
background-position: 0px -360px !important;
panel-label[icon=rss],
panel-label[icon=rss-dis],
panel-label[icon=rss-group] {
--icon-offset: 0px -360px;
}

.stable-icon {
Expand Down