para 0.10.0 → 0.11.1

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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/para/inputs/nested_many.coffee +9 -3
  3. data/app/assets/stylesheets/para/admin/src/_alert.sass +1 -1
  4. data/app/assets/stylesheets/para/admin/src/_base.sass +1 -1
  5. data/app/assets/stylesheets/para/admin/src/_breadcrumb.sass +1 -1
  6. data/app/assets/stylesheets/para/admin/src/_common.sass +53 -54
  7. data/app/assets/stylesheets/para/admin/src/_dropdown.sass +1 -1
  8. data/app/assets/stylesheets/para/admin/src/_form.sass +17 -15
  9. data/app/assets/stylesheets/para/admin/src/_list.sass +8 -6
  10. data/app/assets/stylesheets/para/admin/src/_mixins.sass +13 -13
  11. data/app/assets/stylesheets/para/admin/src/_multi-select.sass +2 -2
  12. data/app/assets/stylesheets/para/admin/src/_navigation.sass +4 -6
  13. data/app/assets/stylesheets/para/admin/src/_navtabs.sass +2 -2
  14. data/app/assets/stylesheets/para/admin/src/_nested-many.sass +3 -3
  15. data/app/assets/stylesheets/para/admin/src/_orderable.sass +2 -2
  16. data/app/assets/stylesheets/para/admin/src/_pagination.sass +5 -5
  17. data/app/assets/stylesheets/para/admin/src/_panel.sass +1 -1
  18. data/app/assets/stylesheets/para/admin/src/_statcard.sass +1 -1
  19. data/app/assets/stylesheets/para/admin/src/_table.sass +1 -1
  20. data/app/assets/stylesheets/para/admin/src/_tree.sass +1 -1
  21. data/app/assets/stylesheets/para/admin/src/_variables.sass +1 -10
  22. data/app/assets/stylesheets/para/admin/src/_well.sass +2 -2
  23. data/app/assets/stylesheets/para/lib/compass/_support.scss +447 -0
  24. data/app/assets/stylesheets/para/lib/compass/css3/_box-shadow.scss +88 -0
  25. data/app/assets/stylesheets/para/lib/compass/css3/_images.scss +152 -0
  26. data/app/assets/stylesheets/para/lib/compass/css3/_inline-block.scss +31 -0
  27. data/app/assets/stylesheets/para/lib/compass/css3/_text-shadow.scss +82 -0
  28. data/app/assets/stylesheets/para/lib/compass/css3/_transform.scss +590 -0
  29. data/app/assets/stylesheets/para/lib/compass/css3/_transition.scss +190 -0
  30. data/app/assets/stylesheets/para/lib/compass/css3/_user-interface.scss +71 -0
  31. data/app/assets/stylesheets/para/lib/compass/utilities/general/_hacks.scss +65 -0
  32. data/app/assets/stylesheets/para/lib/datetimepicker.sass +1 -1
  33. data/app/assets/stylesheets/para/lib/fuelux.sass +2 -2
  34. data/app/assets/stylesheets/para/lib/redactor.sass +5 -5
  35. data/app/assets/stylesheets/para/lib/selectize.sass +6 -7
  36. data/lib/para/version.rb +1 -1
  37. data/lib/para.rb +0 -2
  38. metadata +99 -104
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7dcae0fffaaeae962449f4f7f1849fdcd8817529e9fd16bd2c8a285233dd5a39
4
- data.tar.gz: f3f52c91b79d7b4d6a2c24dd6f0bf9d4b84bec53c280febc2e7c657b58e3796b
3
+ metadata.gz: f8200df9f27fa2f27d322ee3458aca86afe26c70629be160848bb12629586057
4
+ data.tar.gz: 6a931b1665e21f17304bc1f918cb32b686796accadd3184532d4b47230414c46
5
5
  SHA512:
6
- metadata.gz: e13111ccd12a242cca031cbf7b24e78e90f5ffbc40ea1c0947db0978b66196a308d4c04e9704fdf29379d9e5b8ef9e90b73c6b55e25c67fe71f42ed449a8b223
7
- data.tar.gz: d632bd4802a23fe04d80b755c84f0f8250d6158a292326a0133ecac0f4220dd0236b813913d7237871d36f6348ed99e796b85b79c790cf6442fbdeffa2623c3c
6
+ metadata.gz: 27faad84e404aea146d51ece49a8d5091f1dc3f201a44c16841733c28ecfdc8aab1560f080887216949db150d0c19e1e5ced913cdb2cace01462608b735c77f9
7
+ data.tar.gz: 0b11a0c0239a54e99408d15deb17c0ff4174be9719dd0fa592faebce81affa2b69f9e68fd3697160d31db2f8b12fe50c2519e8f622e787cdd5e02c00573425b3
@@ -17,8 +17,15 @@ class Para.NestedManyField
17
17
  onUpdate: $.proxy(@handleOrderingUpdated, this)
18
18
 
19
19
  handleOrderingUpdated: ->
20
- @$fieldsList.find('.form-fields:visible').each (i, el) ->
21
- $(el).find('.resource-position-field').val(i)
20
+ formFields = []
21
+
22
+ @$fieldsList.find('.form-fields:visible').each (_i, el) ->
23
+ isNestedField = $parent.find(el).length for $parent in formFields
24
+ return if isNestedField
25
+
26
+ $el = $(el)
27
+ $el.find('.resource-position-field:eq(0)').val(formFields.length)
28
+ formFields.push($el)
22
29
 
23
30
  initializeCocoon: ->
24
31
  @$fieldsList.on 'cocoon:after-insert', @stoppingPropagation(@afterInsertField)
@@ -30,7 +37,6 @@ class Para.NestedManyField
30
37
  e.stopPropagation()
31
38
  callback(e, args...)
32
39
 
33
-
34
40
  afterInsertField: (e, $element) =>
35
41
  if ($collapsible = $element.find('[data-open-on-insert="true"]')).length
36
42
  @openInsertedField($collapsible)
@@ -12,6 +12,6 @@
12
12
  margin-right: -15px
13
13
  margin-left: -15px
14
14
  margin-bottom: 0
15
- +border-radius(0)
15
+ border-radius: 0
16
16
  &.no-results
17
17
  margin: 15px 0 0 0
@@ -46,7 +46,7 @@ body
46
46
  .page-content-wrap
47
47
  margin: 25px 10px 25px 10px
48
48
  background-color: #fff
49
- +border-radius($border-radius-small)
49
+ border-radius: $border-radius-small
50
50
  +material-box-shadow-soft
51
51
  padding: 25px
52
52
 
@@ -13,7 +13,7 @@
13
13
  margin: 0
14
14
 
15
15
  border: none
16
- +border-radius(0)
16
+ border-radius: 0
17
17
 
18
18
  li
19
19
  max-width: 30%
@@ -21,10 +21,9 @@
21
21
  font-size: 0.8em
22
22
  color: $gray
23
23
 
24
-
25
24
  [class*="hint--"]:after
26
25
  text-transform: lowercase
27
- +text-shadow(none)
26
+ text-shadow: none
28
27
 
29
28
  //** icons
30
29
  .icon-rounded
@@ -35,7 +34,7 @@
35
34
  line-height: 32px
36
35
  font-weight: 700
37
36
  font-style: normal
38
- +border-radius(100%)
37
+ border-radius: 100%
39
38
 
40
39
  //** Thumbtack in statcard
41
40
  .thumbtack-link
@@ -47,13 +46,13 @@
47
46
  &.active
48
47
  .fa-thumb-tack
49
48
  color: $purple
50
- +text-shadow(none)
49
+ text-shadow: none
51
50
 
52
51
  .fa-thumb-tack
53
52
  +rotate(-45deg)
54
53
  font-size: 25px
55
54
  color: #fff
56
- +text-shadow()
55
+ text-shadow: 0px 0px 1px #aaaaaa
57
56
  +default-transition
58
57
 
59
58
  //== Positioning
@@ -75,129 +74,129 @@
75
74
 
76
75
  //** Margin
77
76
  .m-a-0
78
- margin: 0 !important
77
+ margin: 0 !important
79
78
  .m-t-0
80
- margin-top: 0 !important
79
+ margin-top: 0 !important
81
80
  .m-r-0
82
- margin-right: 0 !important
81
+ margin-right: 0 !important
83
82
  .m-b-0
84
83
  margin-bottom: 0 !important
85
84
  .m-l-0
86
- margin-left: 0 !important
85
+ margin-left: 0 !important
87
86
 
88
87
  .m-a
89
- margin: $spacer !important
88
+ margin: $spacer !important
90
89
  .m-t
91
- margin-top: $spacer-y !important
90
+ margin-top: $spacer-y !important
92
91
  .m-r
93
- margin-right: $spacer-x !important
92
+ margin-right: $spacer-x !important
94
93
  .m-b
95
94
  margin-bottom: $spacer-y !important
96
95
  .m-l
97
- margin-left: $spacer-x !important
96
+ margin-left: $spacer-x !important
98
97
  .m-x
99
- margin-right: $spacer-x !important
98
+ margin-right: $spacer-x !important
100
99
  margin-left: $spacer-x !important
101
100
  .m-y
102
- margin-top: $spacer-y !important
101
+ margin-top: $spacer-y !important
103
102
  margin-bottom: $spacer-y !important
104
103
  .m-x-auto
105
104
  margin-right: auto !important
106
105
  margin-left: auto !important
107
106
 
108
107
  .m-a-md
109
- margin: ($spacer-y * 1.5) !important
108
+ margin: ($spacer-y * 1.5) !important
110
109
  .m-t-md
111
- margin-top: ($spacer-y * 1.5) !important
110
+ margin-top: ($spacer-y * 1.5) !important
112
111
  .m-r-md
113
- margin-right: ($spacer-y * 1.5) !important
112
+ margin-right: ($spacer-y * 1.5) !important
114
113
  .m-b-md
115
114
  margin-bottom: ($spacer-y * 1.5) !important
116
115
  .m-l-md
117
- margin-left: ($spacer-y * 1.5) !important
116
+ margin-left: ($spacer-y * 1.5) !important
118
117
  .m-x-md
119
- margin-right: ($spacer-x * 1.5) !important
120
- margin-left: ($spacer-x * 1.5) !important
118
+ margin-right: ($spacer-x * 1.5) !important
119
+ margin-left: ($spacer-x * 1.5) !important
121
120
  .m-y-md
122
- margin-top: ($spacer-y * 1.5) !important
121
+ margin-top: ($spacer-y * 1.5) !important
123
122
  margin-bottom: ($spacer-y * 1.5) !important
124
123
 
125
124
  .m-a-lg
126
- margin: ($spacer-y * 3) !important
125
+ margin: ($spacer-y * 3) !important
127
126
  .m-t-lg
128
- margin-top: ($spacer-y * 2.5) !important
127
+ margin-top: ($spacer-y * 2.5) !important
129
128
  .m-r-lg
130
- margin-right: ($spacer-y * 3) !important
129
+ margin-right: ($spacer-y * 3) !important
131
130
  .m-b-lg
132
131
  margin-bottom: ($spacer-y * 3) !important
133
132
  .m-l-lg
134
- margin-left: ($spacer-y * 3) !important
133
+ margin-left: ($spacer-y * 3) !important
135
134
  .m-x-lg
136
- margin-right: ($spacer-x * 3) !important
137
- margin-left: ($spacer-x * 3) !important
135
+ margin-right: ($spacer-x * 3) !important
136
+ margin-left: ($spacer-x * 3) !important
138
137
  .m-y-lg
139
- margin-top: ($spacer-y * 3) !important
138
+ margin-top: ($spacer-y * 3) !important
140
139
  margin-bottom: ($spacer-y * 3) !important
141
140
 
142
141
  //** Padding
143
142
  .p-a-0
144
- padding: 0 !important
143
+ padding: 0 !important
145
144
  .p-t-0
146
- padding-top: 0 !important
145
+ padding-top: 0 !important
147
146
  .p-r-0
148
- padding-right: 0 !important
147
+ padding-right: 0 !important
149
148
  .p-b-0
150
149
  padding-bottom: 0 !important
151
150
  .p-l-0
152
- padding-left: 0 !important
151
+ padding-left: 0 !important
153
152
 
154
153
  .p-a
155
- padding: $spacer !important
154
+ padding: $spacer !important
156
155
  .p-t
157
- padding-top: $spacer-y !important
156
+ padding-top: $spacer-y !important
158
157
  .p-r
159
- padding-right: $spacer-x !important
158
+ padding-right: $spacer-x !important
160
159
  .p-b
161
160
  padding-bottom: $spacer-y !important
162
161
  .p-l
163
- padding-left: $spacer-x !important
162
+ padding-left: $spacer-x !important
164
163
  .p-x
165
- padding-right: $spacer-x !important
166
- padding-left: $spacer-x !important
164
+ padding-right: $spacer-x !important
165
+ padding-left: $spacer-x !important
167
166
  .p-y
168
- padding-top: $spacer-y !important
167
+ padding-top: $spacer-y !important
169
168
  padding-bottom: $spacer-y !important
170
169
 
171
170
  .p-a-md
172
- padding: ($spacer-y * 1.5) !important
171
+ padding: ($spacer-y * 1.5) !important
173
172
  .p-t-md
174
- padding-top: ($spacer-y * 1.5) !important
173
+ padding-top: ($spacer-y * 1.5) !important
175
174
  .p-r-md
176
- padding-right: ($spacer-y * 1.5) !important
175
+ padding-right: ($spacer-y * 1.5) !important
177
176
  .p-b-md
178
177
  padding-bottom: ($spacer-y * 1.5) !important
179
178
  .p-l-md
180
- padding-left: ($spacer-y * 1.5) !important
179
+ padding-left: ($spacer-y * 1.5) !important
181
180
  .p-x-md
182
- padding-right: ($spacer-x * 1.5) !important
183
- padding-left: ($spacer-x * 1.5) !important
181
+ padding-right: ($spacer-x * 1.5) !important
182
+ padding-left: ($spacer-x * 1.5) !important
184
183
  .p-y-md
185
- padding-top: ($spacer-y * 1.5) !important
184
+ padding-top: ($spacer-y * 1.5) !important
186
185
  padding-bottom: ($spacer-y * 1.5) !important
187
186
 
188
187
  .p-a-lg
189
- padding: ($spacer-y * 3) !important
188
+ padding: ($spacer-y * 3) !important
190
189
  .p-t-lg
191
- padding-top: ($spacer-y * 3) !important
190
+ padding-top: ($spacer-y * 3) !important
192
191
  .p-r-lg
193
- padding-right: ($spacer-y * 3) !important
192
+ padding-right: ($spacer-y * 3) !important
194
193
  .p-b-lg
195
194
  padding-bottom: ($spacer-y * 3) !important
196
195
  .p-l-lg
197
- padding-left: ($spacer-y * 3) !important
196
+ padding-left: ($spacer-y * 3) !important
198
197
  .p-x-lg
199
- padding-right: ($spacer-x * 3) !important
200
- padding-left: ($spacer-x * 3) !important
198
+ padding-right: ($spacer-x * 3) !important
199
+ padding-left: ($spacer-x * 3) !important
201
200
  .p-y-lg
202
- padding-top: ($spacer-y * 3) !important
201
+ padding-top: ($spacer-y * 3) !important
203
202
  padding-bottom: ($spacer-y * 3) !important
@@ -12,7 +12,7 @@
12
12
  +rotate(180deg)
13
13
 
14
14
  .dropdown-menu
15
- +border-radius(2px)
15
+ border-radius: 2px
16
16
  +material-box-shadow-soft(2)
17
17
  border: none
18
18
  margin: 10px 0 0
@@ -9,13 +9,13 @@
9
9
  =outline-input-form
10
10
  padding: 6px 0px
11
11
  -webkit-appearance: none
12
- +box-shadow(none)
13
- +border-radius(0)
12
+ box-shadow: none
13
+ border-radius: 0
14
14
  border: none
15
15
  border-bottom: 1px solid $input-border
16
16
  +default-transition
17
17
  &:focus, &.focus
18
- +box-shadow(0px 1px 0px $input-border-focus)
18
+ box-shadow: 0px 1px 0px $input-border-focus
19
19
  border-color: $input-border-focus
20
20
  +default-transition
21
21
 
@@ -46,12 +46,12 @@ legend
46
46
  font-size: 0.85em
47
47
  margin-bottom: 8px
48
48
  text-transform: uppercase
49
- +transition(color ease-in-out 0.15s)
49
+ transition: color ease-in-out 0.15s
50
50
 
51
51
  .form-group.focused
52
52
  .control-label
53
53
  color: $brand-primary
54
- +transition(color ease-in-out 0.15s)
54
+ transition: color ease-in-out 0.15s
55
55
 
56
56
  //== Inputs
57
57
  //
@@ -76,7 +76,6 @@ legend
76
76
  &.has-error
77
77
  color: $brand-danger
78
78
 
79
-
80
79
  //== Inputs outline
81
80
  //
82
81
  //## Styled inputs with juste a border bottom
@@ -126,7 +125,7 @@ legend
126
125
  .redactor-toolbar
127
126
  border: none
128
127
  background-color: $gray-lighter
129
- +border-radius(0)
128
+ border-radius: 0
130
129
 
131
130
  //** Selectize
132
131
  .selectize-input,
@@ -154,7 +153,7 @@ legend
154
153
  &:active,
155
154
  &.active,
156
155
  &:active:focus
157
- +box-shadow(none)
156
+ box-shadow: none
158
157
 
159
158
  // Datepicker
160
159
  .datetimepicker-trigger.btn-default
@@ -167,7 +166,7 @@ legend
167
166
  &:active,
168
167
  &.active,
169
168
  &:active:focus
170
- +box-shadow(none)
169
+ box-shadow: none
171
170
 
172
171
  //== Color picker
173
172
  //
@@ -192,16 +191,20 @@ legend
192
191
  +filter-style
193
192
  .form-control
194
193
  &:focus
195
- +box-shadow(none)
194
+ box-shadow: none
196
195
  .form-control,
197
196
  .input-group-btn
198
197
  background-color: transparent
199
198
  border: none
200
- +border-left-radius(20px)
199
+ border-top-left-radius: 20px
200
+ border-bottom-left-radius: 20px
201
201
  .input-group-btn
202
202
  overflow: hidden
203
- +border-left-radius(0)
204
- +border-right-radius(20px)
203
+ border-left-radius: 0
204
+ border-top-left-radius: 0
205
+ border-bottom-left-radius: 0
206
+ border-top-top-radius: 20px
207
+ border-bottom-top-radius: 20px
205
208
  .btn
206
209
  background-color: transparent
207
210
  color: $gray
@@ -215,7 +218,7 @@ legend
215
218
  .form-fixed-actions
216
219
  margin-bottom: 100px
217
220
  .form-actions
218
- +border-radius(2px)
221
+ border-radius: 2px
219
222
  position: fixed
220
223
  bottom: 0px
221
224
  right: 50px
@@ -269,7 +272,6 @@ legend
269
272
  color: $brand-danger
270
273
  border-bottom-color: $brand-danger
271
274
 
272
-
273
275
  //== Input with error
274
276
  //
275
277
  //##
@@ -15,7 +15,7 @@
15
15
  margin-right: 0
16
16
 
17
17
  li
18
- +inline-block
18
+ display: inline-block
19
19
  padding: 0 5px
20
20
 
21
21
  .flextable
@@ -65,16 +65,19 @@
65
65
  +filter-style
66
66
  .form-control
67
67
  &:focus
68
- +box-shadow(none)
68
+ box-shadow: none
69
69
  .form-control,
70
70
  .input-group-btn
71
71
  background-color: transparent
72
72
  border: none
73
- +border-left-radius(20px)
73
+ border-top-left-radius: 20px
74
+ border-bottom-left-radius: 20px
74
75
  .input-group-btn
75
76
  overflow: hidden
76
- +border-left-radius(0)
77
- +border-right-radius(20px)
77
+ border-top-left-radius: 0
78
+ border-bottom-left-radius: 0
79
+ border-top-top-radius: 20px
80
+ border-bottom-top-radius: 20px
78
81
  .btn
79
82
  background-color: transparent
80
83
  color: $gray
@@ -82,6 +85,5 @@
82
85
  &:hover
83
86
  color: $gray-dark
84
87
 
85
-
86
88
  .page-entries-info
87
89
  font-weight: 300
@@ -63,8 +63,8 @@
63
63
  border: none
64
64
  width: 100%
65
65
  background-color: $gray-lighter
66
- +box-shadow(0px 1px 3px 0px rgba(32,36,45, .12) inset, 0px 1px 2px 0px rgba(32,36,45, .24) inset)
67
- +border-radius(20px)
66
+ box-shadow: 0px 1px 3px 0px rgba(32,36,45, .12) inset, 0px 1px 2px 0px rgba(32,36,45, .24) inset
67
+ border-radius: 20px
68
68
 
69
69
  //** Sass Mixin to target child of elements
70
70
  =first-child()
@@ -73,31 +73,31 @@
73
73
 
74
74
  //** Default theme transition & shadow
75
75
  =default-transition($time: 0.3s)
76
- +transition(all $time cubic-bezier(.25,.8,.25,1))
76
+ transition: all $time cubic-bezier(.25,.8,.25,1)
77
77
 
78
78
  =material-box-shadow($depth: 1)
79
79
  @if $depth == 1
80
- +box-shadow(0 1px 3px rgba(32,36,45,0.12), 0 1px 2px rgba(32,36,45,0.24))
80
+ box-shadow: 0 1px 3px rgba(32,36,45,0.12), 0 1px 2px rgba(32,36,45,0.24)
81
81
  @if $depth == 2
82
- +box-shadow(0 3px 6px rgba(32,36,45,0.16), 0 3px 6px rgba(32,36,45,0.23))
82
+ box-shadow: 0 3px 6px rgba(32,36,45,0.16), 0 3px 6px rgba(32,36,45,0.23)
83
83
  @if $depth == 3
84
- +box-shadow(0 10px 20px rgba(32,36,45,0.19), 0 6px 6px rgba(32,36,45,0.23))
84
+ box-shadow: 0 10px 20px rgba(32,36,45,0.19), 0 6px 6px rgba(32,36,45,0.23)
85
85
  @if $depth == 4
86
- +box-shadow(0 14px 28px rgba(32,36,45,0.25), 0 10px 10px rgba(32,36,45,0.22))
86
+ box-shadow: 0 14px 28px rgba(32,36,45,0.25), 0 10px 10px rgba(32,36,45,0.22)
87
87
  @if $depth == 5
88
- +box-shadow(0 19px 38px rgba(32,36,45,0.30), 0 15px 12px rgba(32,36,45,0.22))
88
+ box-shadow: 0 19px 38px rgba(32,36,45,0.30), 0 15px 12px rgba(32,36,45,0.22)
89
89
 
90
90
  =material-box-shadow-soft($depth: 1)
91
91
  @if $depth == 1
92
- +box-shadow(0 1px 3px rgba(32,36,45,0.03), 0 1px 2px rgba(32,36,45,0.06))
92
+ box-shadow: 0 1px 3px rgba(32,36,45,0.03), 0 1px 2px rgba(32,36,45,0.06)
93
93
  @if $depth == 2
94
- +box-shadow(0 3px 6px rgba(32,36,45,0.04), 0 3px 6px rgba(32,36,45,0.06))
94
+ box-shadow: 0 3px 6px rgba(32,36,45,0.04), 0 3px 6px rgba(32,36,45,0.06)
95
95
  @if $depth == 3
96
- +box-shadow(0 10px 20px rgba(32,36,45,0.05), 0 6px 6px rgba(32,36,45,0.06))
96
+ box-shadow: 0 10px 20px rgba(32,36,45,0.05), 0 6px 6px rgba(32,36,45,0.06)
97
97
  @if $depth == 4
98
- +box-shadow(0 14px 28px rgba(32,36,45,0.06), 0 10px 10px rgba(32,36,45,0.06))
98
+ box-shadow: 0 14px 28px rgba(32,36,45,0.06), 0 10px 10px rgba(32,36,45,0.06)
99
99
  @if $depth == 5
100
- +box-shadow(0 19px 38px rgba(32,36,45,0.08), 0 15px 12px rgba(32,36,45,0.06))
100
+ box-shadow: 0 19px 38px rgba(32,36,45,0.08), 0 15px 12px rgba(32,36,45,0.06)
101
101
  //** Grab cursor Mixin
102
102
 
103
103
  =grab-cursor
@@ -30,7 +30,7 @@
30
30
  &:hover
31
31
  color: $gray
32
32
  &:active
33
- +box-shadow(none)
33
+ box-shadow: none
34
34
 
35
35
  .panel-heading
36
36
  padding: 5px 8px 5px 15px
@@ -43,7 +43,7 @@
43
43
  text-transform: uppercase
44
44
 
45
45
  .panel
46
- +box-shadow(none)
46
+ box-shadow: none
47
47
  .panel-body
48
48
  max-height: 318px
49
49
  overflow: auto
@@ -109,7 +109,7 @@
109
109
  .navbar-default
110
110
  border: none
111
111
  padding-right: 22px
112
- .nav > li >
112
+ .nav > li >
113
113
  button
114
114
  -webkit-appearance: none
115
115
  border: none
@@ -119,7 +119,7 @@
119
119
  text-align: center
120
120
  margin: 14px 3px
121
121
  color: inherit
122
- +border-radius($border-radius-small)
122
+ border-radius: $border-radius-small
123
123
  i
124
124
  line-height: 14px
125
125
  &.btn-home
@@ -143,8 +143,6 @@
143
143
  //** Dark theme override
144
144
  //***********************
145
145
  .dark-theme.navmenu-default
146
- .navmenu-brand
147
- +background(linear-gradient(to top right, $brand-primary, $brand-info))
148
146
  .navmenu-nav
149
147
  background-color: $navbar-default-bg
150
148
  > li > a
@@ -167,7 +165,7 @@
167
165
  &:focus
168
166
  background-color: $navbar-default-bg
169
167
  &.active
170
- a, button
168
+ a, button
171
169
  background-color: lighten($navbar-default-bg, 10%)
172
170
  border-color: $brand-primary
173
- color: white
171
+ color: white
@@ -12,7 +12,7 @@
12
12
  margin-top: -25px
13
13
 
14
14
  .nav-tabs
15
- +border-radius($border-radius-small)
15
+ border-radius: $border-radius-small
16
16
 
17
17
  &.affix
18
18
  margin-top: 0
@@ -25,7 +25,7 @@
25
25
  margin-top: 0
26
26
 
27
27
  .nav-tabs
28
- +border-radius(0)
28
+ border-radius: 0
29
29
 
30
30
  .panel-body
31
31
  .nav-tabs-wrapper
@@ -20,7 +20,7 @@
20
20
  &.nested-many-field-inset
21
21
  .nested-many-inset-panel
22
22
  border: 1px dashed $gray
23
- +box-shadow(none)
23
+ box-shadow: none
24
24
 
25
25
  .panel-heading
26
26
  background-color: transparent
@@ -28,7 +28,7 @@
28
28
 
29
29
  .nested-many-inset-add-button
30
30
  .btn
31
- +box-shadow(none)
31
+ box-shadow: none
32
32
  background-color: $gray-lighter
33
33
  border: 1px dashed $gray
34
34
  color: $gray
@@ -57,7 +57,7 @@
57
57
  width: 100%
58
58
 
59
59
  > a
60
- +border-radius(2px)
60
+ border-radius: 2px
61
61
  +default-transition
62
62
  background: image_url('para/admin/template-section.svg') no-repeat $gray-lighter
63
63
  background-position: center 10px
@@ -16,7 +16,7 @@
16
16
  font-size: 14px
17
17
  line-height: 20px
18
18
  width: 21px
19
- +inline-block
19
+ display: inline-block
20
20
  +default-transition
21
21
  &:hover
22
22
  color: $gray-darker
@@ -25,7 +25,7 @@
25
25
  cursor: move
26
26
  cursor: -webkit-grabbing
27
27
  cursor: grabbing
28
- +border-radius($border-radius-base)
28
+ border-radius: $border-radius-base
29
29
  margin: 0
30
30
  background-color: $gray
31
31
  color: $gray-darker
@@ -7,17 +7,17 @@
7
7
  //##
8
8
 
9
9
  .pagination
10
- +border-radius(0)
10
+ border-radius: 0
11
11
  +clearfix
12
12
  display: block
13
13
  margin-bottom: 0
14
14
  text-align: center
15
15
  > li
16
- +inline-block
16
+ display: inline-block
17
17
  > a,
18
18
  > span
19
- +border-radius($border-radius-small)
20
- +inline-block
19
+ border-radius: $border-radius-small
20
+ display: inline-block
21
21
  +material-box-shadow-soft(1)
22
22
  background-color: $gray-lighter
23
23
  border: none
@@ -31,4 +31,4 @@
31
31
  > li:first-child
32
32
  > a,
33
33
  > span
34
- +border-radius($border-radius-small)
34
+ border-radius: $border-radius-small
@@ -25,7 +25,7 @@
25
25
  .panel-heading
26
26
  padding: 10px 25px
27
27
  border: none
28
- +border-radius(2px)
28
+ border-radius: 2px
29
29
  +clearfix
30
30
  //** Do not destroy panel heading if image is inside
31
31
  img
@@ -11,7 +11,7 @@
11
11
  display: block
12
12
  padding: 15px
13
13
  background-color: #fff
14
- +border-radius($border-radius-small)
14
+ border-radius: $border-radius-small
15
15
  +clearfix
16
16
  +default-transition
17
17
  +material-box-shadow-soft
@@ -15,7 +15,7 @@
15
15
  .table > tbody > tr > td
16
16
  vertical-align: middle
17
17
  .label
18
- +inline-block
18
+ display: inline-block
19
19
  margin-bottom: 4px
20
20
 
21
21
  .table > thead > tr > th