2012-02-26 23:41:53 +01:00
|
|
|
/**
|
|
|
|
* This file represent some UI that can be changed
|
|
|
|
* during web app restyle or theme select.
|
|
|
|
*
|
|
|
|
* Next items should be placed there
|
|
|
|
* - link colors
|
|
|
|
* - header styles
|
|
|
|
* - main menu styles
|
|
|
|
*
|
|
|
|
*/
|
2012-02-26 23:21:53 +01:00
|
|
|
.ui_basic {
|
2012-02-26 23:41:53 +01:00
|
|
|
/*
|
|
|
|
* Common styles
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
a {
|
|
|
|
color: $link_color;
|
|
|
|
&:hover {
|
|
|
|
text-decoration:none;
|
2012-03-19 21:52:16 +01:00
|
|
|
color: $blue_link;
|
2012-02-26 23:41:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-26 23:21:53 +01:00
|
|
|
/*
|
|
|
|
* Application Header
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
header {
|
|
|
|
width:100%;
|
|
|
|
padding:0;
|
|
|
|
margin:0;
|
|
|
|
top:1px;
|
|
|
|
left:0;
|
|
|
|
background: #F1F1F1; /* for non-css3 browsers */
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
box-shadow: 0 -1px 0 white inset;
|
|
|
|
-moz-box-shadow: 0 -1px 0 white inset;
|
|
|
|
-webkit-box-shadow: 0 -1px 0 white inset;
|
|
|
|
z-index:10;
|
|
|
|
height:60px;
|
|
|
|
|
|
|
|
.app_logo {
|
|
|
|
width:230px;
|
|
|
|
float:left;
|
2012-03-13 21:17:13 +01:00
|
|
|
position:relative;
|
|
|
|
top:-5px;
|
2012-02-26 23:21:53 +01:00
|
|
|
|
|
|
|
a {
|
|
|
|
float:left;
|
|
|
|
|
|
|
|
h1 {
|
2012-04-22 15:01:59 +02:00
|
|
|
text-indent:-9999px;
|
|
|
|
width:102px;
|
|
|
|
background: url('logo_text.png') no-repeat 0px -3px;
|
2012-02-26 23:21:53 +01:00
|
|
|
float:left;
|
|
|
|
margin-left:5px;
|
|
|
|
font-size:20px;
|
2012-03-10 10:32:43 +01:00
|
|
|
line-height:36px;
|
2012-02-26 23:21:53 +01:00
|
|
|
font-weight:bold;
|
|
|
|
color:#aaa;
|
|
|
|
text-shadow: 0 1px 1px #FFF;
|
2012-03-13 21:17:13 +01:00
|
|
|
padding-left:50px;
|
2012-02-28 21:59:36 +01:00
|
|
|
}
|
2012-02-26 23:21:53 +01:00
|
|
|
}
|
2012-04-22 15:01:59 +02:00
|
|
|
.separator {
|
|
|
|
margin-left:20px;
|
|
|
|
float: left;
|
|
|
|
height: 60px;
|
|
|
|
width: 1px;
|
|
|
|
background: white;
|
|
|
|
border-left: 1px solid #DDD;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
2012-02-26 23:21:53 +01:00
|
|
|
}
|
2012-04-10 07:51:08 +02:00
|
|
|
.container {
|
2012-02-26 23:21:53 +01:00
|
|
|
.top_panel_content {
|
2012-04-10 07:51:08 +02:00
|
|
|
margin:auto;
|
|
|
|
position:relative;
|
|
|
|
padding:15px 0;
|
2012-02-26 23:21:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-24 20:49:34 +02:00
|
|
|
.top_panel_ico {
|
2012-03-07 22:55:46 +01:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
padding: 5px;
|
2012-04-24 20:49:34 +02:00
|
|
|
margin-right:10px;
|
2012-03-07 22:55:46 +01:00
|
|
|
float:right;
|
|
|
|
}
|
|
|
|
|
2012-02-26 23:21:53 +01:00
|
|
|
.project_name {
|
|
|
|
float:left;
|
2012-03-07 22:55:46 +01:00
|
|
|
width:360px;
|
2012-02-26 23:21:53 +01:00
|
|
|
margin:0;
|
|
|
|
margin-right:30px;
|
|
|
|
font-size:20px;
|
2012-03-10 10:32:43 +01:00
|
|
|
line-height:36px;
|
2012-02-26 23:21:53 +01:00
|
|
|
font-weight:bold;
|
|
|
|
color:$style_color;
|
|
|
|
text-shadow: 0 1px 1px #FFF;
|
|
|
|
}
|
|
|
|
|
2012-03-07 22:55:46 +01:00
|
|
|
.search {
|
2012-02-26 23:21:53 +01:00
|
|
|
float: right;
|
2012-03-07 22:55:46 +01:00
|
|
|
margin-right: 55px;
|
|
|
|
|
|
|
|
.search-input {
|
|
|
|
width:130px;
|
|
|
|
background-image: url("icon-search.png");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 10px;
|
|
|
|
padding-left:25px;
|
2012-02-26 23:41:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
2012-03-07 22:55:46 +01:00
|
|
|
* End of Application Header
|
2012-02-26 23:41:53 +01:00
|
|
|
*
|
|
|
|
*/
|
2012-02-26 23:21:53 +01:00
|
|
|
}
|