quattro: add quattro-lilac to theme Makefile

This commit is contained in:
Fabrixxm 2012-10-01 09:53:02 -04:00
parent ca34d89482
commit 871f182414
3 changed files with 78 additions and 16 deletions

View File

@ -1,5 +1,6 @@
all: all:
cd dark; make; cd .. cd dark; make; cd ..
cd green; make; cd .. cd green; make; cd ..
cd lilac; make; cd ..

View File

@ -92,6 +92,7 @@
@CommentBoxFullBorderColor: @Grey5; @CommentBoxFullBorderColor: @Grey5;
@TagColor: @Grey1; @TagColor: @Grey1;
@MentionColor: @Grey4;
@JotToolsBackgroundColor: @lilacDark; @JotToolsBackgroundColor: @lilacDark;
@JotToolsBorderColor: @Metalic2; @JotToolsBorderColor: @Metalic2;

View File

@ -404,9 +404,6 @@ code {
padding: 10px; padding: 10px;
margin-top: 20px; margin-top: 20px;
} }
textarea {
font-size: 20px;
}
#panel { #panel {
position: absolute; position: absolute;
width: 10em; width: 10em;
@ -1088,7 +1085,6 @@ section {
padding: 0.3em; padding: 0.3em;
} }
.wall-item-comment-wrapper .comment-edit-text-full { .wall-item-comment-wrapper .comment-edit-text-full {
font-size: 20px;
height: 4em; height: 4em;
color: #2d2d2d; color: #2d2d2d;
border: 1px solid #2d2d2d; border: 1px solid #2d2d2d;
@ -1142,23 +1138,46 @@ section {
padding-top: 5px; padding-top: 5px;
} }
.tag { .tag {
background: url("../../../images/tag_b.png") no-repeat center left; background: url("icons/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
padding-right: 8px;
padding-left: 3px; padding-left: 3px;
} }
.tag a { .tag a {
padding-right: 8px;
background: url("../../../images/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
} }
.filesavetags { .mention {
padding: 3px 0px 3px 0px; background: url("icons/men.png") no-repeat 1px center;
opacity: 0.5; color: #666666;
padding-right: 3px;
padding-left: 18px;
} }
.mention a {
color: #666666;
}
.folder {
background: url("icons/folder.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.folder a {
color: #666666;
}
.category {
background: url("icons/category.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.category a {
color: #666666;
}
/*.filesavetags {
padding: 3px 0px 3px 0px;
opacity: 0.5;
}*/
.wwto { .wwto {
position: absolute !important;
width: 25px;
height: 25px;
background: #FFFFFF; background: #FFFFFF;
border: 2px solid #364e59; border: 2px solid #364e59;
height: 25px; height: 25px;
@ -1334,9 +1353,6 @@ span[id^="showmore-wrap"] {
border: 1px solid #999999; border: 1px solid #999999;
padding: 0.3em; padding: 0.3em;
} }
#jot .profile-jot-text:focus {
font-size: 20px;
}
#jot #jot-tools { #jot #jot-tools {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
@ -2147,3 +2163,47 @@ footer {
.videobb:hover { .videobb:hover {
background-position: -112px -16px; background-position: -112px -16px;
} }
/** range input css **/
/* slider root element */
.slider {
height: 2px;
position: relative;
cursor: pointer;
border: 1px solid #333;
width: 200px;
margin: 10px 0px 10px 0px;
float: left;
}
/* progress bar (enabled with progress: true) */
.progress {
height: 9px;
background-color: #C5FF00;
display: none;
opacity: 0.6;
}
/* drag handle */
.handle {
background-color: #ccc;
height: 16px;
width: 8px;
top: -8px;
position: absolute;
display: block;
margin-top: 1px;
border: 1px solid #000;
cursor: move;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
}
/* the input field */
.range {
width: 20px!important;
font-size: 8pt;
margin-left: 10px;
border: 0px;
color: #999999;
}