Merge "Update border-radius css and remove mixin"
This commit is contained in:
commit
9439f246af
@ -5,7 +5,7 @@
|
||||
min-width: 1000px;
|
||||
background-color: $rbrowser-header-background-color;
|
||||
border: $rbrowser-data-table-border-width solid $rbrowser-data-table-border-color;
|
||||
@include border-radius(4px);
|
||||
border-radius: 4px;
|
||||
|
||||
.tfoot {
|
||||
clear: both;
|
||||
|
@ -11,10 +11,6 @@ $modal-md: 732px;
|
||||
@import "components/resource_browser";
|
||||
|
||||
|
||||
@mixin border-radius($radius...) {
|
||||
border-radius: $radius;
|
||||
}
|
||||
|
||||
/* new clearfix */
|
||||
.clearfix:after {
|
||||
visibility: hidden;
|
||||
@ -112,7 +108,7 @@ dt {
|
||||
background-repeat: no-repeat;
|
||||
border: 1px solid $gray-light;
|
||||
border-bottom-color: darken($gray-light, 10%);
|
||||
@include border-radius(4px);
|
||||
border-radius: 4px;
|
||||
// How to convert to SCSS?
|
||||
// @include box-shadow(inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
ul#tenant_list a {
|
||||
@ -205,14 +201,8 @@ h2 {
|
||||
width: 390px;
|
||||
border: 1px solid $border-color;
|
||||
max-height: none;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
||||
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
||||
-webkit-background-clip: padding-box;
|
||||
-moz-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
|
||||
form {
|
||||
@ -244,8 +234,7 @@ h2 {
|
||||
border-width: 0 5px 5px 0;
|
||||
border-color: $border-color;
|
||||
border-style: solid;
|
||||
|
||||
@include border-radius(0 0 5px 0);
|
||||
border-radius: 0 0 5px 0;
|
||||
float: left;
|
||||
min-width: 236px;
|
||||
}
|
||||
@ -294,7 +283,7 @@ a.current_item:hover {
|
||||
a.current_item:hover h3,
|
||||
a.current_item:hover h4 {
|
||||
color: $link-hover-color;
|
||||
@include border-radius(4px);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.sidebar .switcher_bar {
|
||||
@ -372,7 +361,7 @@ a.current_item:hover h4 {
|
||||
background: #e8f8ff;
|
||||
color: #84b6c5;
|
||||
border: 1px solid #afe3fb;
|
||||
@include border-radius(5px);
|
||||
border-radius: 5px;
|
||||
float: left;
|
||||
width: 29%;
|
||||
margin-right: 5%;
|
||||
@ -390,10 +379,6 @@ a.current_item:hover h4 {
|
||||
font-weight: normal;
|
||||
padding: 0 0 0 10px;
|
||||
border-bottom: 1px solid #c6e7f5;
|
||||
-webkit-border-top-left-radius: 5px;
|
||||
-webkit-border-top-right-radius: 5px;
|
||||
-moz-border-radius-topleft: 5px;
|
||||
-moz-border-radius-topright: 5px;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
}
|
||||
@ -437,14 +422,10 @@ a.current_item:hover h4 {
|
||||
}
|
||||
.table-bordered tr.table_caption + tr th:first-child,
|
||||
.table-bordered tr.table_caption + tr th.hide + th {
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
border-left: 1px solid $table-border-color;
|
||||
}
|
||||
.table-bordered tr.table_caption + tr th:last-child {
|
||||
-moz-border-radius-topright: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
border-right: 1px solid $table-border-color;
|
||||
}
|
||||
@ -458,14 +439,10 @@ a.current_item:hover h4 {
|
||||
}
|
||||
.table-bordered tfoot tr td:first-child {
|
||||
border-bottom: 1px solid $table-border-color;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
.table-bordered tfoot tr td:last-child {
|
||||
border-bottom: 1px solid $table-border-color;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
.table_title h3,
|
||||
|
Loading…
Reference in New Issue
Block a user