* Update .gitignore to ignore .idea. * Removed unused local variables. * use local context and Message class instead of deprecated wfMsg* methods. * Remove redundant px in CSS where possible. * Combine CSS statements where possible. * Replace b by strong. Change-Id: I9d5ed7b7ce585a1c101044254bcbdfc33d42afc1
79 lines
2.7 KiB
CSS
79 lines
2.7 KiB
CSS
div#settings-block {
|
|
border-left: 1px solid #C9C9C9;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
div#display-settings-block {
|
|
/* @embed */
|
|
background: #F6F6F6 url('../images/display.png') no-repeat;
|
|
background-size: 20px auto;
|
|
padding-left: 25px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.settings-title {
|
|
font-size: 11pt;
|
|
}
|
|
|
|
.settings-text {
|
|
color: #555555;
|
|
font-size: 9pt;
|
|
}
|
|
|
|
button.button {
|
|
display: inline-block;
|
|
padding: 0.4065em 1.2195em 0.4065em;
|
|
font: bold 0.813em Arial, sans-serif;
|
|
line-height: 1;
|
|
color: black;
|
|
text-align: center;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
cursor: pointer;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
button.button.blue {
|
|
background-color: #3366bb;
|
|
color: white;
|
|
background-image: -moz-linear-gradient(top, #3670c8, #3366bb);
|
|
background-image: -ms-linear-gradient(top, #3670c8, #3366bb);
|
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3670c8),
|
|
color-stop(100%, #3366bb) );
|
|
background-image: -webkit-linear-gradient(top, #3670c8, #3366bb);
|
|
background-image: linear-gradient(#3670c8, #3366bb);
|
|
border: 1px #33589f solid;
|
|
-ms-filter:
|
|
"progid:DXImageTransform.Microsoft.gradient(startColorstr='#3670c8', endColorstr='#3366bb', GradientType=0)";
|
|
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#3670c8',
|
|
endColorstr='#3366bb', GradientType=0 );
|
|
}
|
|
|
|
button.button.blue:hover {
|
|
background-color: #3f77d7;
|
|
background-image: -moz-linear-gradient(top, #4c84da, #3f77d7);
|
|
background-image: -ms-linear-gradient(top, #4c84da, #3f77d7);
|
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c84da),
|
|
color-stop(100%, #3f77d7) );
|
|
background-image: -webkit-linear-gradient(top, #4c84da, #3f77d7);
|
|
background-image: linear-gradient(#4c84da, #3f77d7);
|
|
-ms-filter:
|
|
"progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c84da', endColorstr='#3f77d7', GradientType=0)";
|
|
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#4c84da',
|
|
endColorstr='#3f77d7', GradientType=0 );
|
|
}
|
|
|
|
button.button.blue:active {
|
|
background-color: #2a549c;
|
|
background-image: -moz-linear-gradient(top, #2d5ea9, #2a549c);
|
|
background-image: -ms-linear-gradient(top, #2d5ea9, #2a549c);
|
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2d5ea9),
|
|
color-stop(100%, #2a549c) );
|
|
background-image: -webkit-linear-gradient(top, #2d5ea9, #2a549c);
|
|
background-image: linear-gradient(#2d5ea9, #2a549c);
|
|
-ms-filter:
|
|
"progid:DXImageTransform.Microsoft.gradient(startColorstr='#2d5ea9', endColorstr='#2a549c', GradientType=0)";
|
|
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#2d5ea9',
|
|
endColorstr='#2a549c', GradientType=0 );
|
|
} |