2012-02-28 23:45:38 +01:00
|
|
|
/**
|
2012-08-16 08:13:50 +02:00
|
|
|
* This file represent some UI that can be changed
|
|
|
|
* during web app restyle or theme select.
|
|
|
|
*
|
2012-02-28 23:45:38 +01:00
|
|
|
* Next items should be placed there
|
|
|
|
* - link colors
|
2012-06-12 13:58:44 +02:00
|
|
|
* - header restyles
|
2012-02-28 23:45:38 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
.ui_mars {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Application Header
|
|
|
|
*
|
|
|
|
*/
|
2012-08-16 08:13:50 +02:00
|
|
|
header {
|
2012-02-28 23:45:38 +01:00
|
|
|
background: #474D57 url('bg-header.png') repeat-x bottom;
|
2012-06-12 13:58:44 +02:00
|
|
|
box-shadow:none;
|
|
|
|
border-bottom: 1px solid #444;
|
2012-02-28 23:45:38 +01:00
|
|
|
|
2012-08-16 08:13:50 +02:00
|
|
|
.fbtn {
|
|
|
|
.btn {
|
2012-08-21 20:26:56 +02:00
|
|
|
i {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
}
|
2012-05-19 11:00:46 +02:00
|
|
|
margin-left:8px;
|
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #595D63), to(#31363E));
|
|
|
|
background-image: -webkit-linear-gradient(#595D63 6.6%, #31363E);
|
|
|
|
background-image: -moz-linear-gradient(#595D63 6.6%, #31363E);
|
|
|
|
background-image: -o-linear-gradient(#595D63 6.6%, #31363E);
|
|
|
|
font-size: 12px;
|
2012-08-16 08:13:50 +02:00
|
|
|
&:hover {
|
2012-05-19 11:00:46 +02:00
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #595D63), to(#2C2F35));
|
|
|
|
background-image: -webkit-linear-gradient(#595D63 6.6%, #2C2F35);
|
|
|
|
background-image: -moz-linear-gradient(#595D63 6.6%, #202227);
|
|
|
|
background-image: -o-linear-gradient(#595D63 6.6%, #202227);
|
|
|
|
background-position:0 0;
|
2012-08-21 20:26:56 +02:00
|
|
|
color:#fff;
|
|
|
|
i {
|
|
|
|
@extend .icon-white;
|
|
|
|
}
|
2012-05-19 11:00:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
border: 1px solid #31363E;
|
|
|
|
color:#D6DADF;
|
|
|
|
text-shadow: 0 -1px 0 #000000;
|
|
|
|
}
|
|
|
|
}
|
2012-08-16 08:13:50 +02:00
|
|
|
.search {
|
2012-02-29 22:21:23 +01:00
|
|
|
float: right;
|
2012-08-16 08:13:50 +02:00
|
|
|
margin-right: 45px;
|
|
|
|
.search-input {
|
2012-03-07 22:55:46 +01:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.7);
|
|
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.4) inset;
|
|
|
|
background-color: #D2D5DA;
|
|
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: white;
|
|
|
|
}
|
2012-02-29 22:21:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.search-input::-webkit-input-placeholder {
|
|
|
|
color: #666;
|
2012-02-28 23:45:38 +01:00
|
|
|
}
|
|
|
|
.app_logo {
|
2012-08-16 08:13:50 +02:00
|
|
|
a {
|
|
|
|
h1 {
|
2012-08-20 21:51:37 +02:00
|
|
|
background: url('logo_white.png') no-repeat 0px -3px;
|
|
|
|
color:#fff;
|
|
|
|
text-shadow: 0 1px 1px #111;
|
2012-02-28 23:45:38 +01:00
|
|
|
}
|
|
|
|
}
|
2012-06-12 13:58:44 +02:00
|
|
|
.separator {
|
2012-07-21 09:23:05 +02:00
|
|
|
display:none;
|
2012-06-12 13:58:44 +02:00
|
|
|
}
|
|
|
|
|
2012-02-28 23:45:38 +01:00
|
|
|
}
|
|
|
|
.project_name {
|
|
|
|
color:#fff;
|
|
|
|
text-shadow: 0 1px 1px #111;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* End of Application Header
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
}
|