compass_radix 3.1.5 → 3.1.6
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 +4 -4
- data/stylesheets/_compass_radix.scss +1 -1
- data/stylesheets/compass_radix/_font.scss +4 -2
- data/stylesheets/compass_radix/_maintenance.scss +95 -1
- data/stylesheets/compass_radix/_menu.scss +6 -0
- data/stylesheets/compass_radix/_mixin.scss +10 -4
- data/stylesheets/compass_radix/_panel.scss +21 -0
- data/stylesheets/compass_radix/_structure.scss +22 -0
- data/stylesheets/compass_radix/_typography.scss +2 -0
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5d395bdf917717935d9d09b8773289e61a1e2f5
|
4
|
+
data.tar.gz: 07a18feec8f4117f696f1bbe23daf45d6d2d963d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4e8f3efc2978d9217d50bc19e0794308ba5a61c41667e75460fe84c0e88e0c30c3c98dea3cd6413df44c30698c9f19e31053df330e2c974be32f28a91ffadf0
|
7
|
+
data.tar.gz: 858281512aaf904e602a4cf583337e85c257b420faa00eda7b0ddab4b45f23530c9aa560373c3bc1b1d4d9aab94607cfc52f67e5186e7645f12807463860a812
|
@@ -19,7 +19,7 @@
|
|
19
19
|
|
20
20
|
// Radix Theme CSS
|
21
21
|
// --------------------------------------------------
|
22
|
-
@import "compass_radix/
|
22
|
+
@import "compass_radix/typography";
|
23
23
|
@import "compass_radix/layout";
|
24
24
|
@import "compass_radix/modal";
|
25
25
|
@import "compass_radix/structure";
|
@@ -1,4 +1,98 @@
|
|
1
1
|
// Maintenance page
|
2
2
|
// --------------------------------------------------
|
3
|
-
.maintenance-page {
|
3
|
+
body.maintenance-page {
|
4
|
+
.container {
|
5
|
+
max-width: 970px !important;
|
6
|
+
}
|
7
|
+
|
8
|
+
.jumbotron {
|
9
|
+
background-color: #000000;
|
10
|
+
color: white;
|
11
|
+
padding: 20px 0;
|
12
|
+
h1 {
|
13
|
+
font-size: 3.0em;
|
14
|
+
margin-top: 0;
|
15
|
+
}
|
16
|
+
@media screen and (min-width: 768px) {
|
17
|
+
padding-top: 30px;
|
18
|
+
padding-bottom: 30px;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
.main {
|
23
|
+
padding-top: 20px;
|
24
|
+
padding-bottom: 50px;
|
25
|
+
}
|
26
|
+
|
27
|
+
.page-header {
|
28
|
+
h1 {
|
29
|
+
font-size: 24px;
|
30
|
+
@include breakpoint(md) {
|
31
|
+
font-size: 36px;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
// Tasks.
|
37
|
+
// --------------------------------------------------
|
38
|
+
.tasks-list {
|
39
|
+
> div {
|
40
|
+
margin-bottom: 25px;
|
41
|
+
@extend .text-muted;
|
42
|
+
@include opacity(0.5);
|
43
|
+
h6 {
|
44
|
+
margin-bottom: 2px;
|
45
|
+
font-size: 14px;
|
46
|
+
font-weight: normal;
|
47
|
+
}
|
48
|
+
h4 {
|
49
|
+
margin-top: 0;
|
50
|
+
font-size: 14px;
|
51
|
+
}
|
52
|
+
&.active,
|
53
|
+
&.done {
|
54
|
+
color: black;
|
55
|
+
@include opacity(1.0);
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
// Forms.
|
61
|
+
// --------------------------------------------------
|
62
|
+
.form-actions {
|
63
|
+
.btn {
|
64
|
+
&:first-child {
|
65
|
+
@extend .btn-primary;
|
66
|
+
background-color: white;
|
67
|
+
border-color: black;
|
68
|
+
color: black;
|
69
|
+
&:hover, &:focus {
|
70
|
+
background-color: black;
|
71
|
+
border-color: white;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
// Progress bar
|
78
|
+
.progress {
|
79
|
+
.progress-bar {
|
80
|
+
background-color: black;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
// Theme selection form.
|
85
|
+
#panopoly-theme-selection-form {
|
86
|
+
.form-type-radio {
|
87
|
+
margin: 0 0 2em;
|
88
|
+
label {
|
89
|
+
display: block;
|
90
|
+
}
|
91
|
+
.form-radio {
|
92
|
+
margin: 0;
|
93
|
+
left: 0;
|
94
|
+
top: 40%;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
4
98
|
}
|
@@ -1,6 +1,12 @@
|
|
1
1
|
// Menus and Navs
|
2
2
|
// --------------------------------------------------
|
3
3
|
|
4
|
+
// Basic menu blocks
|
5
|
+
// --------------------------------------------------
|
6
|
+
ul.menu > li > ul.menu {
|
7
|
+
margin-left: 1em; /* LTR */
|
8
|
+
}
|
9
|
+
|
4
10
|
// Nav
|
5
11
|
// --------------------------------------------------
|
6
12
|
ul.nav {
|
@@ -28,24 +28,30 @@
|
|
28
28
|
}
|
29
29
|
|
30
30
|
// Breakpoint mixin.
|
31
|
+
// Usage: @include breakpoint(sm) { ... }
|
32
|
+
// -----------------------------------------------------------------------------
|
31
33
|
@mixin breakpoint($class) {
|
32
34
|
@if $class == xs {
|
33
35
|
@media (max-width: $screen-xs-max) { @content; }
|
34
36
|
}
|
35
|
-
|
36
37
|
@else if $class == sm {
|
37
38
|
@media (min-width: $screen-sm) { @content; }
|
38
39
|
}
|
39
|
-
|
40
40
|
@else if $class == md {
|
41
41
|
@media (min-width: $screen-md) { @content; }
|
42
42
|
}
|
43
|
-
|
44
43
|
@else if $class == lg {
|
45
44
|
@media (min-width: $screen-lg) { @content; }
|
46
45
|
}
|
47
|
-
|
48
46
|
@else {
|
49
47
|
@warn "Breakpoint mixin supports: xs, sm, md, lg";
|
50
48
|
}
|
51
49
|
}
|
50
|
+
|
51
|
+
// Font Awesome.
|
52
|
+
// Usage: @include fa(bars) { ... }
|
53
|
+
// -----------------------------------------------------------------------------
|
54
|
+
@mixin fa($icon) {
|
55
|
+
@extend .fa;
|
56
|
+
@extend .fa-#{$icon}
|
57
|
+
}
|
@@ -12,6 +12,23 @@
|
|
12
12
|
display: none;
|
13
13
|
}
|
14
14
|
|
15
|
+
// Admin
|
16
|
+
// --------------------------------------------------
|
17
|
+
.panels-layouts-checkboxes {
|
18
|
+
// Undo default Radix styling so the radio button can appear above the layout.
|
19
|
+
input[type="radio"] {
|
20
|
+
position: static;
|
21
|
+
margin-left: 0px;
|
22
|
+
margin-bottom: 20px;
|
23
|
+
}
|
24
|
+
label {
|
25
|
+
margin-left: 0px;
|
26
|
+
}
|
27
|
+
.form-type-radio {
|
28
|
+
margin: 0 !important;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
15
32
|
// IPE
|
16
33
|
// --------------------------------------------------
|
17
34
|
div#panels-ipe-control-container {
|
@@ -57,3 +74,7 @@ ul.panels-ipe-linkbar {
|
|
57
74
|
}
|
58
75
|
}
|
59
76
|
}
|
77
|
+
|
78
|
+
body.panels-ipe {
|
79
|
+
margin-bottom: 55px !important;
|
80
|
+
}
|
@@ -1,6 +1,22 @@
|
|
1
1
|
// Styles for Tabs, Messages, ..etc
|
2
2
|
// --------------------------------------------------
|
3
3
|
|
4
|
+
// Site name and logo
|
5
|
+
// --------------------------------------------------
|
6
|
+
#logo {
|
7
|
+
display: block;
|
8
|
+
float: left;
|
9
|
+
margin-right: $navbar-padding-horizontal;
|
10
|
+
|
11
|
+
// Resize the logo to fit the height of the navbar (which a child theme may
|
12
|
+
// change on the desktop).
|
13
|
+
height: 100%;
|
14
|
+
width: auto;
|
15
|
+
}
|
16
|
+
#site-name {
|
17
|
+
float: left;
|
18
|
+
}
|
19
|
+
|
4
20
|
// Page header
|
5
21
|
// --------------------------------------------------
|
6
22
|
.page-header {
|
@@ -238,3 +254,9 @@ ul.dropdown-menu li {
|
|
238
254
|
}
|
239
255
|
}
|
240
256
|
}
|
257
|
+
|
258
|
+
// jQuery UI tabs
|
259
|
+
// --------------------------------------------------
|
260
|
+
.ui-tabs .ui-tabs-nav {
|
261
|
+
padding: 0 5px 5px 5px;
|
262
|
+
}
|
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.
|
4
|
+
version: 3.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arshad Chummun
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: compass
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '3.
|
33
|
+
version: '3.1'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '3.
|
40
|
+
version: '3.1'
|
41
41
|
description: A compass extension for the Drupal Radix theme. See http://drupal.org/project/radix
|
42
42
|
email: arshad@chummun.com
|
43
43
|
executables: []
|
@@ -61,6 +61,7 @@ files:
|
|
61
61
|
- stylesheets/compass_radix/_page.scss
|
62
62
|
- stylesheets/compass_radix/_panel.scss
|
63
63
|
- stylesheets/compass_radix/_structure.scss
|
64
|
+
- stylesheets/compass_radix/_typography.scss
|
64
65
|
- stylesheets/compass_radix/_user.scss
|
65
66
|
- stylesheets/compass_radix/_variable.scss
|
66
67
|
- stylesheets/compass_radix/_view.scss
|
@@ -99,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
100
|
version: '0'
|
100
101
|
requirements: []
|
101
102
|
rubyforge_project:
|
102
|
-
rubygems_version: 2.
|
103
|
+
rubygems_version: 2.4.6
|
103
104
|
signing_key:
|
104
105
|
specification_version: 4
|
105
106
|
summary: a compass extension for the Drupal Radix theme
|