Fixes, continue work
This commit is contained in:
parent
42fc2e45c8
commit
1850f009ff
10 changed files with 286 additions and 159 deletions
|
|
@ -153,7 +153,7 @@ textarea::-webkit-input-placeholder {
|
|||
/* line 18, ../bootstrap/bootstrap/_sprites.scss */
|
||||
[class^="icon-"],
|
||||
[class*=" icon-"] {
|
||||
background-image: url("../img/glyphicons-halflings.png");
|
||||
background-image: url("../img/glyphicons-halflings-white.png");
|
||||
}
|
||||
|
||||
/* White icons with optional class, or on hover/active states of certain elements */
|
||||
|
|
@ -946,6 +946,20 @@ select:focus:invalid:focus {
|
|||
color: #ff9900;
|
||||
}
|
||||
|
||||
#usercountwrap, #currenttitle, #videowrap,
|
||||
#librarytoggle, #userpltoggle, #playlisttoggle {
|
||||
background-color: #2f2f2f;
|
||||
}
|
||||
|
||||
.queue_entry {
|
||||
background-color: #111111;
|
||||
}
|
||||
|
||||
.queue_active {
|
||||
border-color: #ff9900;
|
||||
background-color: #332200;
|
||||
}
|
||||
|
||||
#plmeta {
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
|
|
|||
37
www/assets/css/semidark.css
Normal file
37
www/assets/css/semidark.css
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
body, #videowrap {
|
||||
background-color: #2f2f2f;
|
||||
}
|
||||
|
||||
.queue_entry {
|
||||
background-color: #111111;
|
||||
}
|
||||
|
||||
.queue_active {
|
||||
border-color: #ff9900;
|
||||
background-color: #332200;
|
||||
}
|
||||
|
||||
#userpltoggle, #librarytoggle, #playlisttoggle {
|
||||
color: #cccccc;
|
||||
background-color: #2f2f2f;
|
||||
}
|
||||
|
||||
#currenttitle {
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
.qe_time {
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
#userpltoggle i[class^="icon-"], #userpltoggle i[class*=" icon-"],
|
||||
#librarytoggle i[class^="icon-"], #librarytoggle i[class*=" icon-"],
|
||||
#playlisttoggle i[class^="icon-"], #playlisttoggle i[class*=" icon-"] {
|
||||
background-image: url("../img/glyphicons-halflings-white.png");
|
||||
}
|
||||
|
||||
#plmeta {
|
||||
color: #cccccc;
|
||||
background-color: #2f2f2f;
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
|
@ -101,8 +101,11 @@ html, body {
|
|||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.queue_entry {
|
||||
.queue_sortable li {
|
||||
cursor: row-resize;
|
||||
}
|
||||
|
||||
.queue_entry {
|
||||
background-color: #ffffff;
|
||||
margin: 2px 0 0 auto;
|
||||
padding: 2px;
|
||||
|
|
@ -114,6 +117,11 @@ html, body {
|
|||
background-image: url(../img/stripe-diagonal.png);
|
||||
}
|
||||
|
||||
.queue_active {
|
||||
background-color: #d9edf7;
|
||||
border-color: #bce8f1;
|
||||
}
|
||||
|
||||
#plmeta {
|
||||
border: 1px solid #aaaaaa;
|
||||
border-top: 0;
|
||||
|
|
@ -286,6 +294,17 @@ html, body {
|
|||
padding: 5px;
|
||||
}
|
||||
|
||||
.user-dropdown {
|
||||
z-index: 9999;
|
||||
position: absolute;
|
||||
border: 1px solid #aaaaaa;
|
||||
border-radius: 5px;
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
max-width: 200px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.profile-image {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue