Beter default color for add button

This commit is contained in:
Yann Esposito (Yogsototh) 2011-04-14 15:53:11 +02:00
parent 6e870e6a99
commit a0c52c2713
2 changed files with 13 additions and 7 deletions

View file

@ -116,6 +116,7 @@ input#addtasktextfield {
/* line 100, ../src/main.scss */
#addtaskbutton {
background-color: #1782ff;
background: url("/img/addtaskbuttonbackground.jpg");
border: 1px solid #2f53cd;
font-size: 16px;
@ -134,19 +135,21 @@ input#addtasktextfield {
font-weight: bold;
}
/* line 113, ../src/main.scss */
/* line 114, ../src/main.scss */
#addtaskbutton:hover {
background-color: #0b92ff;
background: url("/img/addtaskbuttonhoverbackground.jpg");
cursor: pointer;
}
/* line 117, ../src/main.scss */
/* line 119, ../src/main.scss */
#addtaskbutton:active {
background-color: #306dff;
background: url("/img/addtaskbuttonpushedbackground.jpg");
cursor: pointer;
}
/* line 122, ../src/main.scss */
/* line 125, ../src/main.scss */
.item {
font-size: 14px;
border-top: 1px solid #EEE;
@ -155,25 +158,25 @@ input#addtasktextfield {
padding-left: 20px;
}
/* line 129, ../src/main.scss */
/* line 132, ../src/main.scss */
.item.first {
border-top: 1px solid #DDD;
}
/* line 132, ../src/main.scss */
/* line 135, ../src/main.scss */
.item label {
margin-left: 10px;
padding-left: 0;
}
/* line 133, ../src/main.scss */
/* line 136, ../src/main.scss */
.item.done {
opacity: 0.2;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}
/* line 136, ../src/main.scss */
/* line 139, ../src/main.scss */
#webpageinfo {
font-size: 10px;
color: #CCC;

View file

@ -98,6 +98,7 @@ input#addtasktextfield {
}
#addtaskbutton {
background-color: #1782ff;
background: url('/img/addtaskbuttonbackground.jpg');
border: 1px solid #2f53cd;
font-size: 16px;
@ -111,10 +112,12 @@ input#addtasktextfield {
font-weight: bold;
}
#addtaskbutton:hover {
background-color: #0b92ff;
background: url('/img/addtaskbuttonhoverbackground.jpg');
cursor: pointer;
}
#addtaskbutton:active {
background-color: #306dff;
background: url('/img/addtaskbuttonpushedbackground.jpg');
cursor: pointer;
}