bootswatch-sass 3.3.1.3 → 3.3.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +0 -2
  3. data/README.md +8 -2
  4. data/assets/stylesheets/cerulean/_bootswatch.scss +102 -101
  5. data/assets/stylesheets/cerulean/_variables.scss +1 -1
  6. data/assets/stylesheets/cosmo/_bootswatch.scss +204 -123
  7. data/assets/stylesheets/cosmo/_variables.scss +1 -1
  8. data/assets/stylesheets/cyborg/_bootswatch.scss +179 -109
  9. data/assets/stylesheets/cyborg/_variables.scss +1 -1
  10. data/assets/stylesheets/darkly/_bootswatch.scss +281 -209
  11. data/assets/stylesheets/darkly/_variables.scss +1 -1
  12. data/assets/stylesheets/flatly/_bootswatch.scss +279 -203
  13. data/assets/stylesheets/flatly/_variables.scss +1 -1
  14. data/assets/stylesheets/journal/_bootswatch.scss +102 -50
  15. data/assets/stylesheets/journal/_variables.scss +1 -1
  16. data/assets/stylesheets/lumen/_bootswatch.scss +436 -340
  17. data/assets/stylesheets/lumen/_variables.scss +1 -1
  18. data/assets/stylesheets/paper/_bootswatch.scss +335 -391
  19. data/assets/stylesheets/paper/_variables.scss +1 -1
  20. data/assets/stylesheets/readable/_bootswatch.scss +155 -93
  21. data/assets/stylesheets/readable/_variables.scss +1 -1
  22. data/assets/stylesheets/sandstone/_bootswatch.scss +168 -128
  23. data/assets/stylesheets/sandstone/_variables.scss +1 -1
  24. data/assets/stylesheets/simplex/_bootswatch.scss +111 -84
  25. data/assets/stylesheets/simplex/_variables.scss +1 -1
  26. data/assets/stylesheets/slate/_bootswatch.scss +357 -362
  27. data/assets/stylesheets/slate/_variables.scss +1 -1
  28. data/assets/stylesheets/spacelab/_bootswatch.scss +132 -166
  29. data/assets/stylesheets/spacelab/_variables.scss +1 -1
  30. data/assets/stylesheets/superhero/_bootswatch.scss +264 -164
  31. data/assets/stylesheets/superhero/_variables.scss +1 -1
  32. data/assets/stylesheets/united/_bootswatch.scss +40 -7
  33. data/assets/stylesheets/united/_variables.scss +1 -1
  34. data/assets/stylesheets/yeti/_bootswatch.scss +367 -238
  35. data/assets/stylesheets/yeti/_variables.scss +1 -1
  36. data/bootswatch-sass.gemspec +3 -6
  37. data/lib/bootswatch-sass.rb +18 -1
  38. data/lib/bootswatch-sass/version.rb +1 -1
  39. metadata +7 -49
@@ -76,7 +76,7 @@ $headings-color: #444;
76
76
  //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
77
77
 
78
78
  //** Load fonts from this directory.
79
- $icon-font-path: "bootstrap/";
79
+ $icon-font-path: "bootstrap/" !default;
80
80
  //** File name for all font files.
81
81
  $icon-font-name: "glyphicons-halflings-regular";
82
82
  //** Element ID within SVG icon file.
@@ -1,125 +1,187 @@
1
+ // Readable 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
1
5
  @import url("//fonts.googleapis.com/css?family=Raleway:400,700");
6
+
7
+ // Navbar =====================================================================
8
+
2
9
  .navbar {
3
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
4
- }
5
- .navbar-nav,
6
- .navbar-form {
7
- margin-left: 0;
8
- margin-right: 0;
9
- }
10
- .navbar-nav > li > a {
11
- padding: 8px 12px;
12
- margin: 12px 6px;
13
- border: 1px solid transparent;
14
- border-radius: 4px;
15
- }
16
- .navbar-nav > li > a:hover {
17
- border: 1px solid #ddd;
18
- }
19
- .navbar-nav > .active > a,
20
- .navbar-nav > .active > a:hover {
21
- border: 1px solid #ddd;
22
- }
23
- .navbar-default .navbar-nav > .active > a:hover {
24
- color: #4582ec;
25
- }
26
- .navbar-inverse .navbar-nav > .active > a:hover {
27
- color: #333333;
28
- }
29
- .navbar-brand {
30
- padding-top: 20px;
10
+ font-family: $headings-font-family;
11
+
12
+ &-nav,
13
+ &-form {
14
+ margin-left: 0;
15
+ margin-right: 0;
16
+ }
17
+
18
+ &-nav > li > a {
19
+ padding: $padding-base-vertical $padding-base-horizontal;
20
+ margin: 12px 6px;
21
+ border: 1px solid transparent;
22
+ border-radius: $border-radius-base;
23
+
24
+ &:hover {
25
+ border: 1px solid #ddd;
26
+ }
27
+ }
28
+
29
+ &-nav > .active > a,
30
+ &-nav > .active > a:hover {
31
+ border: 1px solid #ddd;
32
+ }
33
+
34
+ &-default .navbar-nav > .active > a:hover {
35
+ color: $navbar-default-link-hover-color;
36
+ }
37
+
38
+ &-inverse .navbar-nav > .active > a:hover {
39
+ color: $navbar-inverse-link-hover-color;
40
+ }
41
+
42
+ &-brand {
43
+ padding-top: 20px;
44
+ }
31
45
  }
32
- @media (max-width: 768px) {
33
- .navbar .navbar-nav > li > a {
34
- margin: 0;
46
+
47
+ @media (max-width: $grid-float-breakpoint) {
48
+ .navbar {
49
+ .navbar-nav > li > a {
50
+ margin: 0;
51
+ }
35
52
  }
36
53
  }
54
+
55
+ // Buttons ====================================================================
56
+
37
57
  .btn {
38
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
39
- }
58
+ font-family: $headings-font-family;
59
+ }
60
+
61
+ // Typography =================================================================
62
+
63
+ // Tables =====================================================================
64
+
65
+ // Forms ======================================================================
66
+
40
67
  legend {
41
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
68
+ font-family: $headings-font-family;
42
69
  }
70
+
43
71
  .input-group-addon {
44
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
45
- }
46
- .nav .open > a,
47
- .nav .open > a:hover,
48
- .nav .open > a:focus {
49
- border: 1px solid #ddd;
72
+ font-family: $font-family-sans-serif;
73
+ }
74
+
75
+ // Navs =======================================================================
76
+
77
+ .nav {
78
+ .open > a,
79
+ .open > a:hover,
80
+ .open > a:focus {
81
+ border: 1px solid #ddd;
82
+ }
50
83
  }
84
+
51
85
  .pagination {
52
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
53
- }
54
- .pagination-lg > li > a,
55
- .pagination-lg > li > span {
56
- padding: 14px 24px;
86
+
87
+ font-family: $headings-font-family;
88
+
89
+ &-lg > li > a,
90
+ &-lg > li > span {
91
+ padding: 14px 24px;
92
+ }
57
93
  }
94
+
58
95
  .pager {
59
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
60
- }
61
- .pager a {
62
- color: #333333;
63
- }
64
- .pager a:hover {
65
- border-color: transparent;
66
- color: #fff;
67
- }
68
- .pager .disabled a {
69
- border-color: #dddddd;
96
+
97
+ font-family: $headings-font-family;
98
+
99
+ a {
100
+ color: $text-color;
101
+ }
102
+
103
+ a:hover {
104
+ border-color: transparent;
105
+ color: #fff;
106
+ }
107
+
108
+ .disabled a {
109
+ border-color: $pager-border;
110
+ }
70
111
  }
112
+
113
+ // Indicators =================================================================
114
+
71
115
  .close {
72
116
  color: #fff;
73
117
  text-decoration: none;
74
118
  text-shadow: none;
75
119
  opacity: 0.4;
120
+
121
+ &:hover,
122
+ &:focus {
123
+ color: #fff;
124
+ opacity: 1;
125
+ }
76
126
  }
77
- .close:hover,
78
- .close:focus {
79
- color: #fff;
80
- opacity: 1;
81
- }
82
- .alert .alert-link {
83
- color: #ffffff;
84
- text-decoration: underline;
127
+
128
+ .alert {
129
+ .alert-link {
130
+ color: $alert-success-text;
131
+ text-decoration: underline;
132
+ }
85
133
  }
134
+
86
135
  .label {
87
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
136
+ font-family: $headings-font-family;
88
137
  font-weight: normal;
138
+
139
+ &-default {
140
+ border: 1px solid #ddd;
141
+ color: $text-color;
142
+ }
143
+
89
144
  }
90
- .label-default {
91
- border: 1px solid #ddd;
92
- color: #333333;
93
- }
145
+
94
146
  .badge {
95
147
  padding: 1px 7px 5px;
96
148
  vertical-align: 2px;
97
- font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
149
+ font-family: $headings-font-family;
98
150
  font-weight: normal;
99
151
  }
152
+
153
+ // Progress bars ==============================================================
154
+
155
+ // Containers =================================================================
156
+
100
157
  .panel {
101
- -webkit-box-shadow: none;
102
- box-shadow: none;
103
- }
104
- .panel-default .close {
105
- color: #333333;
106
- }
107
- .panel-primary .panel-heading,
108
- .panel-success .panel-heading,
109
- .panel-warning .panel-heading,
110
- .panel-danger .panel-heading,
111
- .panel-info .panel-heading {
112
- color: #fff;
113
- }
114
- .panel-primary .panel-body,
115
- .panel-success .panel-body,
116
- .panel-warning .panel-body,
117
- .panel-danger .panel-body,
118
- .panel-info .panel-body {
119
- border: 1px solid #ddd;
120
- border-top-width: 0;
121
- border-radius: 0 0 4px 4px;
158
+ @include box-shadow(none);
159
+
160
+ &-default {
161
+ .close {
162
+ color: $text-color;
163
+ }
164
+ }
165
+
166
+ &-primary,
167
+ &-success,
168
+ &-warning,
169
+ &-danger,
170
+ &-info {
171
+ .panel-heading {
172
+ color: #fff;
173
+ }
174
+
175
+ .panel-body {
176
+ border: 1px solid #ddd;
177
+ border-top-width: 0;
178
+ border-radius: 0 0 $border-radius-base $border-radius-base;
179
+ }
180
+ }
122
181
  }
123
- .modal .close {
124
- color: #333333;
182
+
183
+ .modal {
184
+ .close {
185
+ color: $text-color;
186
+ }
125
187
  }
@@ -76,7 +76,7 @@ $headings-color: inherit;
76
76
  //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
77
77
 
78
78
  //** Load fonts from this directory.
79
- $icon-font-path: "bootstrap/";
79
+ $icon-font-path: "bootstrap/" !default;
80
80
  //** File name for all font files.
81
81
  $icon-font-name: "glyphicons-halflings-regular";
82
82
  //** Element ID within SVG icon file.
@@ -1,155 +1,195 @@
1
+ // Sandstone 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
1
5
  @import url("//fonts.googleapis.com/css?family=Roboto:400,500");
6
+
7
+ // Navbar =====================================================================
8
+
2
9
  .sandstone {
3
10
  font-size: 11px;
4
11
  line-height: 22px;
5
12
  font-weight: 500;
6
13
  text-transform: uppercase;
7
14
  }
8
- .navbar .nav > li > a {
9
- font-size: 11px;
10
- line-height: 22px;
11
- font-weight: 500;
12
- text-transform: uppercase;
13
- }
14
- .navbar-form input,
15
- .navbar-form .form-control {
16
- border: none;
17
- }
15
+
16
+ .navbar {
17
+ .nav > li > a {
18
+ @extend .sandstone;
19
+ }
20
+
21
+ &-form input,
22
+ &-form .form-control {
23
+ border: none;
24
+ }
25
+ }
26
+
27
+ // Buttons ====================================================================
28
+
18
29
  .btn {
19
30
  border: none;
20
- font-size: 11px;
21
- line-height: 22px;
22
- font-weight: 500;
23
- text-transform: uppercase;
24
- }
25
- .btn:hover {
26
- border-color: transparent;
27
- }
28
- .btn-lg {
29
- line-height: 26px;
30
- }
31
- .btn-default:hover {
32
- background-color: #393a35;
33
- }
31
+ @extend .sandstone;
32
+
33
+ &:hover {
34
+ border-color: transparent;
35
+ }
36
+
37
+ &-lg {
38
+ line-height: 26px;
39
+ }
40
+
41
+ &-default {
42
+ &:hover {
43
+ background-color: $navbar-default-link-active-bg;
44
+ }
45
+ }
46
+ }
47
+
48
+ // Typography =================================================================
49
+
50
+ // Tables =====================================================================
51
+
52
+ // Forms ======================================================================
53
+
34
54
  input,
35
55
  .form-control {
36
- -webkit-box-shadow: none;
37
- box-shadow: none;
38
- }
39
- input:focus,
40
- .form-control:focus {
41
- border-color: #dfd7ca;
42
- -webkit-box-shadow: none;
43
- box-shadow: none;
44
- }
56
+ @include box-shadow(none);
57
+
58
+ &:focus {
59
+ border-color: $input-border;
60
+ @include box-shadow(none);
61
+ }
62
+ }
63
+
45
64
  .input-sm {
46
65
  padding: 15px 10px;
47
66
  }
67
+
68
+ // Navs =======================================================================
69
+
48
70
  .nav {
49
- font-size: 11px;
50
- line-height: 22px;
51
- font-weight: 500;
52
- text-transform: uppercase;
53
- }
54
- .nav .open > a,
55
- .nav .open > a:hover,
56
- .nav .open > a:focus {
57
- border-color: #dfd7ca;
58
- }
59
- .nav-tabs > li > a {
60
- background-color: #f8f5f0;
61
- border-color: #dfd7ca;
62
- color: #98978b;
63
- }
64
- .nav-tabs > li.disabled > a:hover {
65
- background-color: #f8f5f0;
66
- }
67
- .nav-pills a {
68
- color: #98978b;
69
- }
70
- .nav-pills li > a {
71
- border: 1px solid transparent;
72
- }
73
- .nav-pills li.active > a,
74
- .nav-pills li > a:hover {
75
- border-color: #dfd7ca;
76
- }
77
- .nav-pills li.disabled > a {
78
- border-color: transparent;
79
- }
71
+ @extend .sandstone;
72
+
73
+ .open > a,
74
+ .open > a:hover,
75
+ .open > a:focus {
76
+ border-color: $gray-light;
77
+ }
78
+ }
79
+
80
+ .nav-tabs {
81
+
82
+ & > li > a {
83
+ background-color: $gray-lighter;
84
+ border-color: $nav-tabs-border-color;
85
+ color: $gray;
86
+ }
87
+
88
+ > li.disabled > a:hover {
89
+ background-color: $gray-lighter;
90
+ }
91
+ }
92
+
93
+ .nav-pills {
94
+ a {
95
+ color: $gray;
96
+ }
97
+
98
+ li > a {
99
+ border: 1px solid transparent;
100
+ }
101
+
102
+ li.active > a,
103
+ li > a:hover {
104
+ border-color: $gray-light;
105
+ }
106
+
107
+ li.disabled > a {
108
+ border-color: transparent;
109
+ }
110
+ }
111
+
80
112
  .breadcrumb {
81
- font-size: 11px;
82
- line-height: 22px;
83
- font-weight: 500;
84
- text-transform: uppercase;
85
- border: 1px solid #dfd7ca;
86
- }
87
- .breadcrumb a {
88
- color: #98978b;
89
- }
113
+ @extend .sandstone;
114
+
115
+ border: 1px solid $gray-light;
116
+
117
+ a {
118
+ color: $gray;
119
+ }
120
+ }
121
+
90
122
  .pagination {
91
- font-size: 11px;
92
- line-height: 22px;
93
- font-weight: 500;
94
- text-transform: uppercase;
123
+ @extend .sandstone;
95
124
  }
125
+
96
126
  .pager {
97
- font-size: 11px;
98
- line-height: 22px;
99
- font-weight: 500;
100
- text-transform: uppercase;
101
- }
102
- .pager li > a {
103
- color: #98978b;
104
- }
105
- .dropdown-menu > li > a {
106
- font-size: 11px;
107
- line-height: 22px;
108
- font-weight: 500;
109
- text-transform: uppercase;
110
- }
111
- .alert a,
112
- .alert .alert-link {
113
- color: #fff;
114
- }
127
+ @extend .sandstone;
128
+
129
+ li > a {
130
+ color: $gray;
131
+ }
132
+ }
133
+
134
+ .dropdown-menu {
135
+ & > li > a {
136
+ @extend .sandstone;
137
+ }
138
+ }
139
+
140
+ // Indicators =================================================================
141
+
142
+ .alert {
143
+
144
+ a,
145
+ .alert-link {
146
+ color: #fff;
147
+ }
148
+ }
149
+
115
150
  .tooltip {
116
- font-size: 11px;
117
- line-height: 22px;
118
- font-weight: 500;
119
- text-transform: uppercase;
151
+ @extend .sandstone;
120
152
  }
153
+
154
+ // Progress bars ==============================================================
155
+
121
156
  .progress {
122
157
  border-radius: 10px;
123
- background-color: #dfd7ca;
124
- -webkit-box-shadow: none;
125
- box-shadow: none;
126
- }
127
- .progress-bar {
128
- -webkit-box-shadow: none;
129
- box-shadow: none;
130
- }
131
- .list-group-item {
132
- padding: 16px 24px;
133
- }
158
+ background-color: $gray-light;
159
+ @include box-shadow(none);
160
+
161
+ &-bar {
162
+ @include box-shadow(none);
163
+ }
164
+ }
165
+
166
+ // Containers =================================================================
167
+
168
+ .list-group {
169
+ &-item {
170
+ padding: 16px 24px;
171
+ }
172
+ }
173
+
134
174
  .well {
135
- -webkit-box-shadow: none;
136
- box-shadow: none;
175
+ @include box-shadow(none);
137
176
  }
177
+
138
178
  .panel {
139
- -webkit-box-shadow: none;
140
- box-shadow: none;
141
- }
142
- .panel .panel-heading,
143
- .panel .panel-title,
144
- .panel .panel-footer {
145
- font-size: 11px;
146
- line-height: 22px;
147
- font-weight: 500;
148
- text-transform: uppercase;
149
- color: #fff;
150
- }
151
- .panel-default .panel-heading,
152
- .panel-default .panel-title,
153
- .panel-default .panel-footer {
154
- color: #98978b;
179
+ @include box-shadow(none);
180
+
181
+ .panel-heading,
182
+ .panel-title,
183
+ .panel-footer {
184
+ @extend .sandstone;
185
+ color: #fff;
186
+ }
187
+
188
+ &-default {
189
+ .panel-heading,
190
+ .panel-title,
191
+ .panel-footer {
192
+ color: $gray;
193
+ }
194
+ }
155
195
  }