compass_radix 3.1.1 → 3.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01ffbab818454c4a0f567df0d2ee660b85f2e9f0
4
- data.tar.gz: 134b8df9e33988952dec7761cbcf6e54986ea0b4
3
+ metadata.gz: 35ce660c209f0c610390282cba1b44ad0023843b
4
+ data.tar.gz: db9bf2eef6a66d3d3c4f2d2bd5f8ded72f1e03fc
5
5
  SHA512:
6
- metadata.gz: afeba648ac625edcce5ab3a42678aa80f579372f37ffef64bae50f2e9d7eb8162aae0dea0c4cf79153969ad11a1a7f8291bb41fa297b73cb92014d735f9c94a6
7
- data.tar.gz: 9d52b4cb5a5d458336cfbc62027278379b0e6f570e2c3440adc514253ce57be64c3287649f11e435f6b7a3b993e570f1fda0f469be09ecffd34b36593439362b
6
+ metadata.gz: 7f974efb40b9b2106f59e4c2aeaf1c05036667eb0fa0e98b002e3727f99d800419062a152d4140e6975e31e8571b4bc6667004833e7a6f06dc0bbfb323439203
7
+ data.tar.gz: 4da6b263cae73af3b6d284ee10c05678fc865f2d865304001e3508403aaab99ef5aaf2d837ef692f086621d3783129f26d1612978afbbf064a27579c9a59eee6
@@ -21,6 +21,7 @@
21
21
  // --------------------------------------------------
22
22
  @import "compass_radix/font";
23
23
  @import "compass_radix/layout";
24
+ @import "compass_radix/modal";
24
25
  @import "compass_radix/structure";
25
26
  @import "compass_radix/menu";
26
27
  @import "compass_radix/page";
@@ -0,0 +1,120 @@
1
+ // Styles for CTools Modal
2
+ // --------------------------------------------------
3
+ body.ctools-modal-open {
4
+ overflow: hidden;
5
+ }
6
+ #modalContent {
7
+ .modal-content {
8
+ width: 100%;
9
+ overflow: hidden;
10
+ @include box-shadow(none !important);
11
+ }
12
+ #modal-content {
13
+ overflow: auto;
14
+ width: 100% !important;
15
+ background: white;
16
+ }
17
+ .panels-add-content-modal {
18
+ background: none;
19
+ padding: 0;
20
+ height: 100%;
21
+ margin: -20px -20px 0;
22
+ width: 100%;
23
+ position: absolute;
24
+ }
25
+ }
26
+ #modalContent {
27
+ .panels-section-columns,
28
+ .panels-categories-description {
29
+ border: none;
30
+ }
31
+ .panels-section-column-categories {
32
+ margin-left: 0;
33
+ border-right: 1px solid #ccc;
34
+ height: 100%;
35
+ background: white;
36
+ overflow: auto;
37
+ padding-bottom: 20px;
38
+ .btn {
39
+ border: 1px solid $gray-light !important;
40
+ line-height: inherit;
41
+ margin: 0;
42
+ text-align: left;
43
+ }
44
+ }
45
+ .panels-categories-box {
46
+ border: 0;
47
+ a.btn {
48
+ padding: 5px 10px;
49
+ }
50
+ a.active {
51
+ background: $gray-lighter;
52
+ @include box-shadow(none);
53
+ }
54
+ }
55
+ .panels-root-content-box {
56
+ a.btn {
57
+ padding: 5px 10px;
58
+ }
59
+ }
60
+ .panels-categories-description {
61
+ padding: 20px;
62
+ }
63
+ .panels-section-columns {
64
+ padding-bottom: 20px;
65
+ }
66
+ }
67
+ #modal-content fieldset.widget-preview {
68
+ margin-top: 18px;
69
+ margin-bottom: 0;
70
+ position: static;
71
+ border: 1px solid #ddd;
72
+ .panel-heading {
73
+ position: relative;
74
+ .btn {
75
+ position: absolute;
76
+ right: 10px;
77
+ top: 5px;
78
+ }
79
+ }
80
+ }
81
+ #modal-content .ctools-auto-submit-full-form {
82
+ fieldset {
83
+ width: 48%;
84
+ display: block;
85
+ fieldset {
86
+ width: 100%;
87
+ }
88
+ &.widget-preview-single {
89
+ float: right;
90
+ margin-left: 1em;
91
+ margin-top: 0;
92
+ width: 48%;
93
+ max-width: 48% !important;
94
+ }
95
+ }
96
+ .form-actions {
97
+ float: right;
98
+ clear: right;
99
+ width: 48%;
100
+ max-width: 48%;
101
+ text-align: right;
102
+ }
103
+ }
104
+
105
+ // Custom modal form overrides.
106
+ #modal-content {
107
+ .form-item-view-settings {
108
+ display: block;
109
+ }
110
+ .form-item-exposed-use-pager {
111
+ display: block;
112
+ }
113
+ #panopoly-form-widget-preview {
114
+ width: 50%;
115
+ float: right;
116
+ .container {
117
+ width: auto;
118
+ }
119
+ }
120
+ }
@@ -0,0 +1,36 @@
1
+ // Drupal Navbar
2
+ // --------------------------------------------------
3
+ .drupal-navbar .navbar-bar,
4
+ .drupal-navbar .navbar-tray-vertical > .navbar-lining:before,
5
+ .drupal-navbar .navbar-tray-horizontal {
6
+ @include box-shadow(none);
7
+ }
8
+ .drupal-navbar .navbar-tray-vertical,
9
+ .drupal-navbar .navbar-tray-vertical > .navbar-lining:before {
10
+ bottom: 0;
11
+ width: 240px !important;
12
+ }
13
+ @media only screen and (min-width: 38.125em) {
14
+ body.navbar-tray-open.navbar-vertical {
15
+ margin-left: 240px !important;
16
+ }
17
+ }
18
+
19
+ // Navbar Styling for Panopoly.
20
+ // --------------------------------------------------
21
+ a#navbar-link-admin-panopoly {
22
+ &:before {
23
+ background-image: url("../images/icon/icon-panopoly.png");
24
+ }
25
+ &.active:before {
26
+ background-image: url("../images/icon/icon-panopoly-active.png");
27
+ }
28
+ }
29
+ a#navbar-link-admin-apps {
30
+ &:before {
31
+ background-image: url("../images/icon/icon-apps.png");
32
+ }
33
+ &.active:before {
34
+ background-image: url("../images/icon/icon-apps-active.png");
35
+ }
36
+ }
@@ -218,164 +218,6 @@ ul.dropdown-menu li {
218
218
  list-style: none outside none !important;
219
219
  }
220
220
 
221
- // Drupal Navbar
222
- // --------------------------------------------------
223
- .drupal-navbar .navbar-bar,
224
- .drupal-navbar .navbar-tray-vertical > .navbar-lining:before,
225
- .drupal-navbar .navbar-tray-horizontal {
226
- @include box-shadow(none);
227
- }
228
- .drupal-navbar .navbar-tray-vertical,
229
- .drupal-navbar .navbar-tray-vertical > .navbar-lining:before {
230
- bottom: 0;
231
- width: 240px !important;
232
- }
233
- @media only screen and (min-width: 38.125em) {
234
- body.navbar-tray-open.navbar-vertical {
235
- margin-left: 240px !important;
236
- }
237
- }
238
-
239
- // Navbar Styling for Panopoly.
240
- // --------------------------------------------------
241
- a#navbar-link-admin-panopoly {
242
- &:before {
243
- background-image: url("../images/icon/icon-panopoly.png");
244
- }
245
- &.active:before {
246
- background-image: url("../images/icon/icon-panopoly-active.png");
247
- }
248
- }
249
- a#navbar-link-admin-apps {
250
- &:before {
251
- background-image: url("../images/icon/icon-apps.png");
252
- }
253
- &.active:before {
254
- background-image: url("../images/icon/icon-apps-active.png");
255
- }
256
- }
257
-
258
- // Ctools Modal
259
- // --------------------------------------------------
260
- body.ctools-modal-open {
261
- overflow: hidden;
262
- }
263
- #modalContent {
264
- .modal-content {
265
- width: 100%;
266
- overflow: hidden;
267
- @include box-shadow(none !important);
268
- }
269
- #modal-content {
270
- overflow: auto;
271
- width: 100% !important;
272
- background: white;
273
- }
274
- .panels-add-content-modal {
275
- background: none;
276
- padding: 0;
277
- height: 100%;
278
- margin: -20px -20px 0;
279
- width: 100%;
280
- position: absolute;
281
- }
282
- }
283
- #modalContent {
284
- .panels-section-columns,
285
- .panels-categories-description {
286
- border: none;
287
- }
288
- .panels-section-column-categories {
289
- margin-left: 0;
290
- border-right: 1px solid #ccc;
291
- height: 100%;
292
- background: white;
293
- overflow: auto;
294
- padding-bottom: 20px;
295
- .btn {
296
- border: 1px solid $gray-light !important;
297
- line-height: inherit;
298
- margin: 0;
299
- text-align: left;
300
- }
301
- }
302
- .panels-categories-box {
303
- border: 0;
304
- a.btn {
305
- padding: 5px 10px;
306
- }
307
- a.active {
308
- background: $gray-lighter;
309
- @include box-shadow(none);
310
- }
311
- }
312
- .panels-root-content-box {
313
- a.btn {
314
- padding: 5px 10px;
315
- }
316
- }
317
- .panels-categories-description {
318
- padding: 20px;
319
- }
320
- .panels-section-columns {
321
- padding-bottom: 20px;
322
- }
323
- }
324
- #modal-content fieldset.widget-preview {
325
- margin-top: 18px;
326
- margin-bottom: 0;
327
- position: static;
328
- border: 1px solid #ddd;
329
- .panel-heading {
330
- position: relative;
331
- .btn {
332
- position: absolute;
333
- right: 10px;
334
- top: 5px;
335
- }
336
- }
337
- }
338
- #modal-content .ctools-auto-submit-full-form {
339
- fieldset {
340
- width: 48%;
341
- display: block;
342
- fieldset {
343
- width: 100%;
344
- }
345
- &.widget-preview-single {
346
- float: right;
347
- margin-left: 1em;
348
- margin-top: 0;
349
- width: 48%;
350
- max-width: 48% !important;
351
- }
352
- }
353
- .form-actions {
354
- float: right;
355
- clear: right;
356
- width: 48%;
357
- max-width: 48%;
358
- text-align: right;
359
- }
360
- }
361
-
362
- // Custom modal form overrides.
363
- #modal-content {
364
- .form-item-view-settings {
365
- display: block;
366
- }
367
- .form-item-exposed-use-pager {
368
- display: block;
369
- }
370
- #panopoly-form-widget-preview {
371
- width: 50%;
372
- float: right;
373
- .container {
374
- width: auto;
375
- }
376
- }
377
- }
378
-
379
221
  // Calendar
380
222
  // --------------------------------------------------
381
223
  .calendar-calendar {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass_radix
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arshad Chummun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-06 00:00:00.000000000 Z
11
+ date: 2014-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: compass
@@ -55,6 +55,8 @@ files:
55
55
  - stylesheets/compass_radix/_maintenance.scss
56
56
  - stylesheets/compass_radix/_menu.scss
57
57
  - stylesheets/compass_radix/_mixin.scss
58
+ - stylesheets/compass_radix/_modal.scss
59
+ - stylesheets/compass_radix/_navbar.scss
58
60
  - stylesheets/compass_radix/_node.scss
59
61
  - stylesheets/compass_radix/_page.scss
60
62
  - stylesheets/compass_radix/_panel.scss