2012-08-29 20:23:43 +02:00
|
|
|
/**
|
|
|
|
* ===================================
|
2012-09-03 21:30:14 +02:00
|
|
|
* Contain 3 main UI block elements:
|
2012-08-29 20:23:43 +02:00
|
|
|
* .main_box - for show pages
|
|
|
|
* .ui-box - for simple block & widgets
|
|
|
|
* ===================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UI box element
|
|
|
|
* contains top, middle, bottom blocks
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.main_box {
|
|
|
|
@extend .borders;
|
|
|
|
@extend .prepend-top-20;
|
|
|
|
@extend .append-bottom-20;
|
2012-11-23 17:33:43 +01:00
|
|
|
border-width: 1px;
|
2012-08-29 20:23:43 +02:00
|
|
|
@include solid_shade;
|
|
|
|
|
|
|
|
|
|
|
|
img { max-width: 100%; }
|
|
|
|
|
|
|
|
pre {
|
|
|
|
code {
|
|
|
|
background: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.top_box_content,
|
|
|
|
.middle_box_content,
|
|
|
|
.bottom_box_content {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 15px;
|
2012-08-29 20:23:43 +02:00
|
|
|
|
|
|
|
pre {
|
|
|
|
background: none !important;
|
2012-11-23 17:33:43 +01:00
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.middle_box_content {
|
2012-11-23 17:51:38 +01:00
|
|
|
@include border-radius(0);
|
2012-11-23 17:33:43 +01:00
|
|
|
border: none;
|
|
|
|
font-size: 12px;
|
2012-11-23 17:51:38 +01:00
|
|
|
background-color: #f5f5f5;
|
2012-11-23 17:33:43 +01:00
|
|
|
border: none;
|
2012-11-23 17:51:38 +01:00
|
|
|
border-top: 1px solid #eee;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.bottom_box_content {
|
2012-11-23 17:51:38 +01:00
|
|
|
border-top: 1px solid #eee;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Big UI Block for show page content
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.ui-box {
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #F9F9F9;
|
2012-08-29 20:23:43 +02:00
|
|
|
margin-bottom: 25px;
|
|
|
|
@include round-borders-all(4px);
|
|
|
|
border-color: #CCC;
|
|
|
|
@include solid_shade;
|
|
|
|
|
2012-09-12 17:56:44 +02:00
|
|
|
&.white {
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #fff;
|
2012-09-12 17:56:44 +02:00
|
|
|
}
|
|
|
|
|
2012-08-29 20:23:43 +02:00
|
|
|
ul {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin: 0;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h5, .title {
|
|
|
|
padding: 0 10px;
|
|
|
|
@include round-borders-top(4px);
|
|
|
|
@include bg-gray-gradient;
|
|
|
|
border-bottom: 1px solid #bbb;
|
|
|
|
|
|
|
|
&.small {
|
|
|
|
line-height: 28px;
|
|
|
|
font-size: 14px;
|
2012-11-23 17:33:43 +01:00
|
|
|
line-height: 28px;
|
2012-08-29 20:23:43 +02:00
|
|
|
text-shadow: 0 1px 1px white;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 9px 0;
|
2012-11-23 17:33:43 +01:00
|
|
|
margin: 0px;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-pills {
|
|
|
|
li {
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 3px 0;
|
2012-11-23 17:33:43 +01:00
|
|
|
&.active a { background-color: $style_color; }
|
2012-08-29 20:23:43 +02:00
|
|
|
a {
|
2012-11-23 17:51:38 +01:00
|
|
|
@include border-radius(7px);
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
@include bg-gray-gradient;
|
|
|
|
@include round-borders-bottom(4px);
|
2012-11-23 17:33:43 +01:00
|
|
|
border-bottom: none;
|
2012-08-29 20:23:43 +02:00
|
|
|
border-top: 1px solid #bbb;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.padded {
|
|
|
|
h5, .title {
|
|
|
|
margin: -20px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 5px 20px;
|
|
|
|
}
|
|
|
|
.middle_title {
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #f5f5f5;
|
2012-08-29 20:23:43 +02:00
|
|
|
margin:20px -20px;
|
|
|
|
padding: 0 20px;
|
2012-11-23 17:51:38 +01:00
|
|
|
border-top: 1px solid #eee;
|
|
|
|
border-bottom: 1px solid #eee;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-size: 14px;
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #777;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.row_title {
|
2012-11-23 17:33:43 +01:00
|
|
|
font-weight: bold;
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #444;
|
2012-08-29 20:23:43 +02:00
|
|
|
&:hover {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #444;
|
2012-11-23 17:33:43 +01:00
|
|
|
text-decoration: underline;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li, .wll {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 10px;
|
2012-08-29 20:23:43 +02:00
|
|
|
&:first-child {
|
|
|
|
@include round-borders-top(4px);
|
2012-11-23 17:33:43 +01:00
|
|
|
border-top: none;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
@include round-borders-bottom(4px);
|
2012-11-23 17:33:43 +01:00
|
|
|
border: none;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
2012-09-12 07:23:20 +02:00
|
|
|
|
|
|
|
.ui-box-body {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 10px;
|
2012-09-12 07:23:20 +02:00
|
|
|
}
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|