compass_radix 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -111,6 +111,10 @@ html.js input.throbbing {
|
|
111
111
|
.filter-wrapper {
|
112
112
|
@include well();
|
113
113
|
margin-top: 10px;
|
114
|
+
.form-item {
|
115
|
+
margin: 0 0 10px;
|
116
|
+
padding: 0;
|
117
|
+
}
|
114
118
|
.filter-guidelines {
|
115
119
|
padding: 0;
|
116
120
|
.tips {
|
@@ -134,6 +138,31 @@ html.js input.throbbing {
|
|
134
138
|
}
|
135
139
|
}
|
136
140
|
|
141
|
+
.navbar-inverse {
|
142
|
+
.search-form {
|
143
|
+
input.search-query {
|
144
|
+
color: $white;
|
145
|
+
background-color: $navbarInverseSearchBackground;
|
146
|
+
border-color: $navbarInverseSearchBorder;
|
147
|
+
@include ctb-box-shadow(#{inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15)});
|
148
|
+
@include ctb-transition(none);
|
149
|
+
@include ctb-placeholder($navbarInverseSearchPlaceholderColor);
|
150
|
+
|
151
|
+
// Focus states (we use .focused since IE7-8 and down doesn't support :focus)
|
152
|
+
&:focus,
|
153
|
+
&.focused {
|
154
|
+
padding: 5px 15px;
|
155
|
+
color: $grayDark;
|
156
|
+
text-shadow: 0 1px 0 $white;
|
157
|
+
background-color: $navbarInverseSearchBackgroundFocus;
|
158
|
+
border: 0;
|
159
|
+
@include ctb-box-shadow(0 0 3px rgba(0,0,0,.15));
|
160
|
+
outline: 0;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
137
166
|
// Field Overview
|
138
167
|
// --------------------------------------------------
|
139
168
|
.page-admin {
|
@@ -119,6 +119,40 @@
|
|
119
119
|
}
|
120
120
|
}
|
121
121
|
|
122
|
+
// Navbar Inverse
|
123
|
+
// --------------------------------------------------
|
124
|
+
.navbar-inverse {
|
125
|
+
color: $navbarInverseText;
|
126
|
+
#main-menu {
|
127
|
+
> ul.menu {
|
128
|
+
> li {
|
129
|
+
> a {
|
130
|
+
color: $navbarInverseLinkColor;
|
131
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
|
132
|
+
text-align: center;
|
133
|
+
&:hover {
|
134
|
+
color: $navbarInverseLinkColorHover;
|
135
|
+
background-color: $navbarInverseLinkBackgroundHover;
|
136
|
+
}
|
137
|
+
&.active {
|
138
|
+
color: $navbarInverseLinkColorActive;
|
139
|
+
background-color: $navbarInverseLinkBackgroundActive;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|
146
|
+
|
147
|
+
// Navbar Fixed Top
|
148
|
+
// --------------------------------------------------
|
149
|
+
.navbar-fixed-top {
|
150
|
+
margin-top: 0 !important;
|
151
|
+
.container {
|
152
|
+
@include ctb-core-span($gridColumns);
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
122
156
|
// Pane Menu Tree
|
123
157
|
// --------------------------------------------------
|
124
158
|
.pane-menu-tree {
|