Refactored theme css, added Modern theme pre version
This commit is contained in:
parent
a6dad85d2f
commit
04bf40a923
10 changed files with 172 additions and 11 deletions
121
app/assets/stylesheets/themes/ui_mars.scss
Normal file
121
app/assets/stylesheets/themes/ui_mars.scss
Normal file
|
@ -0,0 +1,121 @@
|
|||
/**
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
.ui_mars {
|
||||
|
||||
/*
|
||||
* Application Header
|
||||
*
|
||||
*/
|
||||
header {
|
||||
width:100%;
|
||||
padding:0;
|
||||
margin:0;
|
||||
top:1px;
|
||||
left:0;
|
||||
background: #474D57 url('bg-header.png') repeat-x bottom;
|
||||
z-index:10;
|
||||
height:60px;
|
||||
|
||||
.fbtn {
|
||||
float: right;
|
||||
margin-right:10px;
|
||||
.btn {
|
||||
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;
|
||||
&:hover {
|
||||
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;
|
||||
}
|
||||
|
||||
border: 1px solid #31363E;
|
||||
color:#D6DADF;
|
||||
text-shadow: 0 -1px 0 #000000;
|
||||
}
|
||||
}
|
||||
.search {
|
||||
float: right;
|
||||
margin-right: 55px;
|
||||
.search-input {
|
||||
background-image:url("icon-search.png");
|
||||
float: right;
|
||||
text-shadow: none;
|
||||
width: 130px;
|
||||
background-image: url("icon-search.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px;
|
||||
border-radius: 100px;
|
||||
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);
|
||||
padding: 5px;
|
||||
padding-left: 26px;
|
||||
|
||||
&:focus {
|
||||
background-color: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
.search-input::-webkit-input-placeholder {
|
||||
color: #666;
|
||||
}
|
||||
.app_logo {
|
||||
width:230px;
|
||||
float:left;
|
||||
position:relative;
|
||||
top:-5px;
|
||||
|
||||
a {
|
||||
float:left;
|
||||
|
||||
h1 {
|
||||
background: url('images.png') no-repeat -3px -6px;
|
||||
width: 65px;
|
||||
height: 26px;
|
||||
margin: 6px 0;
|
||||
padding: 0;
|
||||
float: left;
|
||||
text-indent: -1000em;
|
||||
float:left;
|
||||
}
|
||||
}
|
||||
}
|
||||
.project_name {
|
||||
float:left;
|
||||
margin:0;
|
||||
margin-right:30px;
|
||||
font-size:20px;
|
||||
line-height:38px;
|
||||
font-weight:bold;
|
||||
color:#fff;
|
||||
text-shadow: 0 1px 1px #111;
|
||||
}
|
||||
|
||||
.container {
|
||||
.top_panel_content {
|
||||
margin:auto;
|
||||
position:relative;
|
||||
padding:15px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
* End of Application Header
|
||||
*
|
||||
*/
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue