blueberry_admin 0.1.1.7 → 0.1.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/blueberry_admin/base/_forms.sass +32 -1
- data/app/assets/stylesheets/blueberry_admin/components/_boxes.sass +41 -12
- data/app/assets/stylesheets/blueberry_admin/components/_buttons.sass +3 -0
- data/app/assets/stylesheets/blueberry_admin/components/_gallery.sass +66 -0
- data/app/assets/stylesheets/blueberry_admin/components/_pages-tree.sass +64 -0
- data/app/assets/stylesheets/blueberry_admin/components/_panels.sass +23 -0
- data/app/assets/stylesheets/blueberry_admin/components/_redactor.sass +8 -0
- data/app/assets/stylesheets/blueberry_admin/layout/layout.sass +2 -4
- data/lib/blueberry_admin/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ac1bfb1fbb8612422399f25a1cd0ef79715b0bd
|
4
|
+
data.tar.gz: 1a6a7cf23b8e8c15a856d1e11983b6c99e0debe5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53ba81a70aa686f789ad86e08da9b76808c8ecfb528d03fe2dfe4500fb929e5d1145d45f3454ca27c5cec946f4be32aee6dbfc75f7c8552283f71d2d8213b4c0
|
7
|
+
data.tar.gz: 4846563c5f845b3bbf250a4f96c57ca0a0c475f945144e7bbba63890d48500381a87d399b5e151e3077042e5a782ca7b92cd6b567b9dc229dfe0ab2b970fcfec
|
@@ -76,7 +76,7 @@ select.form-control
|
|
76
76
|
|
77
77
|
.form-control-wrapper
|
78
78
|
margin-left: 200px
|
79
|
-
width: calc(100% -
|
79
|
+
width: calc(100% - 200px)
|
80
80
|
max-width: 350px
|
81
81
|
display: block
|
82
82
|
position: relative
|
@@ -128,3 +128,34 @@ select.form-control
|
|
128
128
|
float: left
|
129
129
|
.checkbox
|
130
130
|
margin-left: 30px
|
131
|
+
|
132
|
+
.checkbox
|
133
|
+
input[type="checkbox"]
|
134
|
+
margin: 0
|
135
|
+
top: 5px
|
136
|
+
left: 0
|
137
|
+
|
138
|
+
.form-horizontal
|
139
|
+
.checkbox,
|
140
|
+
.radio
|
141
|
+
input[type="checkbox"]
|
142
|
+
top: 12px
|
143
|
+
|
144
|
+
.checkbox-inline
|
145
|
+
.checkbox
|
146
|
+
input[type="checkbox"]
|
147
|
+
top: 8px
|
148
|
+
|
149
|
+
textarea.form-control
|
150
|
+
min-height: 100px
|
151
|
+
|
152
|
+
select.form-control
|
153
|
+
background: white image_url('admin/arrow-bottom.png') no-repeat right center
|
154
|
+
|
155
|
+
&[multiple="multiple"]
|
156
|
+
background: white
|
157
|
+
|
158
|
+
abbr[title],
|
159
|
+
abbr[data-original-title]
|
160
|
+
border: none
|
161
|
+
text-decoration: none
|
@@ -5,12 +5,22 @@
|
|
5
5
|
.box
|
6
6
|
margin: 0 0 30px
|
7
7
|
padding: 0
|
8
|
+
position: relative
|
9
|
+
background: white
|
10
|
+
border: 1px solid #e7eaec
|
8
11
|
clear: both
|
9
12
|
|
13
|
+
&::after
|
14
|
+
content: ""
|
15
|
+
height: 15px
|
16
|
+
display: block
|
17
|
+
|
18
|
+
// deprecated
|
10
19
|
&.collapsed
|
11
20
|
&:after,
|
12
21
|
&:before
|
13
22
|
display: table
|
23
|
+
height: auto
|
14
24
|
|
15
25
|
.box-content
|
16
26
|
display: none
|
@@ -25,9 +35,7 @@
|
|
25
35
|
margin-bottom: 0
|
26
36
|
padding: 14px 0 7px
|
27
37
|
min-height: 48px
|
28
|
-
border
|
29
|
-
border-style: solid solid none
|
30
|
-
border-width: 1px
|
38
|
+
border: none
|
31
39
|
background-color: $ibox-title-bg
|
32
40
|
color: inherit
|
33
41
|
+clearfix
|
@@ -47,13 +55,16 @@
|
|
47
55
|
margin-left: 0.5em
|
48
56
|
|
49
57
|
.box-content
|
50
|
-
|
51
|
-
color: inherit
|
58
|
+
margin-bottom: 15px
|
52
59
|
padding: 0 20px
|
53
|
-
border-color: $border-color
|
54
60
|
border-image: none
|
61
|
+
border-color: $border-color
|
55
62
|
border-style: solid
|
56
|
-
border-width:
|
63
|
+
border-width: 0
|
64
|
+
border-top-width: 1px
|
65
|
+
border-bottom-width: 1px
|
66
|
+
background-color: $ibox-content-bg
|
67
|
+
color: inherit
|
57
68
|
clear: both
|
58
69
|
&:before
|
59
70
|
content: ""
|
@@ -63,22 +74,40 @@
|
|
63
74
|
content: ""
|
64
75
|
margin-top: 35px
|
65
76
|
display: block
|
77
|
+
&:first-child
|
78
|
+
border-top: none
|
79
|
+
&:last-child
|
80
|
+
margin-bottom: 0
|
81
|
+
border-bottom: none
|
66
82
|
|
67
83
|
hr
|
68
|
-
border-top: 1px dashed $
|
84
|
+
border-top: 1px dashed $gray-lighter
|
69
85
|
|
70
86
|
.box-footer,
|
71
|
-
padding:
|
87
|
+
padding: 5px 20px
|
72
88
|
font-size: 90%
|
73
|
-
border: 1px solid $border-color
|
74
|
-
border-top: none
|
75
89
|
background: #ffffff
|
76
90
|
color: inherit
|
77
|
-
background:
|
91
|
+
background: rgba(255, 255, 255, 0.92)
|
92
|
+
z-index: 1000
|
93
|
+
|
94
|
+
&.sticky
|
95
|
+
position: sticky
|
96
|
+
bottom: 0
|
97
|
+
transition: all 0.4s
|
98
|
+
|
99
|
+
&.sticked
|
100
|
+
background: rgba(#2F2D2E, 0.95)
|
101
|
+
|
102
|
+
.btn
|
103
|
+
@extend .btn-sm
|
78
104
|
|
79
105
|
.for-horizontal-form
|
80
106
|
padding-left: 200px
|
81
107
|
|
108
|
+
.btn
|
109
|
+
transition: all 0.4s
|
110
|
+
|
82
111
|
.btn + .btn
|
83
112
|
margin-left: 1em
|
84
113
|
|
@@ -63,6 +63,9 @@
|
|
63
63
|
.glyphicon-remove
|
64
64
|
color: $brand-danger
|
65
65
|
|
66
|
+
.glyphicon-plus
|
67
|
+
color: $brand-primary
|
68
|
+
|
66
69
|
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default.active[disabled], fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active
|
67
70
|
background-color: lighten($dark-gray, 4%)
|
68
71
|
border-color: lighten($dark-gray, 4%)
|
@@ -0,0 +1,66 @@
|
|
1
|
+
/*
|
2
|
+
* Component: Gallery
|
3
|
+
* -------------------------
|
4
|
+
*/
|
5
|
+
|
6
|
+
.gallery
|
7
|
+
margin: 0 -3px
|
8
|
+
display: flex
|
9
|
+
flex-wrap: wrap
|
10
|
+
|
11
|
+
.gallery__input
|
12
|
+
padding: 10px 0
|
13
|
+
width: 100%
|
14
|
+
|
15
|
+
.form-group
|
16
|
+
margin: 0
|
17
|
+
clear: none
|
18
|
+
|
19
|
+
&::before,
|
20
|
+
&::after
|
21
|
+
content: none
|
22
|
+
|
23
|
+
.gallery__item
|
24
|
+
+make-columns(sm4, "lg3")
|
25
|
+
padding: 0 3px
|
26
|
+
@media screen and (min-width: 1450px)
|
27
|
+
width: 20%
|
28
|
+
|
29
|
+
&.single
|
30
|
+
padding: 0
|
31
|
+
width: 100%
|
32
|
+
max-width: 200px
|
33
|
+
float: none
|
34
|
+
|
35
|
+
.well
|
36
|
+
margin-bottom: 6px
|
37
|
+
|
38
|
+
.preview
|
39
|
+
margin: 0 0 5px
|
40
|
+
padding: 3px
|
41
|
+
height: 110px
|
42
|
+
text-align: center
|
43
|
+
line-height: 100px
|
44
|
+
vertical-align: middle
|
45
|
+
border: 1px solid $gray-lighter
|
46
|
+
border-radius: 2px
|
47
|
+
background: white
|
48
|
+
|
49
|
+
img
|
50
|
+
max-width: 100%
|
51
|
+
max-height: 100%
|
52
|
+
|
53
|
+
.form-control-wrapper
|
54
|
+
margin: 0
|
55
|
+
padding: 0
|
56
|
+
width: auto
|
57
|
+
|
58
|
+
.form-control
|
59
|
+
padding: 2px 5px
|
60
|
+
height: auto
|
61
|
+
|
62
|
+
.list-inline
|
63
|
+
margin: 0
|
64
|
+
|
65
|
+
.checkbox
|
66
|
+
min-height: 0
|
@@ -0,0 +1,64 @@
|
|
1
|
+
/*
|
2
|
+
* Component: Page tree
|
3
|
+
* -------------------------
|
4
|
+
*/
|
5
|
+
|
6
|
+
.pages-tree
|
7
|
+
margin: 0
|
8
|
+
padding: 0
|
9
|
+
list-style: none
|
10
|
+
|
11
|
+
ul
|
12
|
+
margin: 0
|
13
|
+
padding: 0 0 0 21px
|
14
|
+
list-style: none
|
15
|
+
|
16
|
+
.sortable-placeholder
|
17
|
+
background: rgba($gray, 0.5)
|
18
|
+
|
19
|
+
.pages-tree__row
|
20
|
+
display: flex
|
21
|
+
align-items: center
|
22
|
+
justify-content: space-between
|
23
|
+
border-bottom: 1px solid $gray-lighter
|
24
|
+
|
25
|
+
[class^="col-"]
|
26
|
+
padding: 5px 10px
|
27
|
+
|
28
|
+
.col-icon
|
29
|
+
padding-left: 0
|
30
|
+
i
|
31
|
+
cursor: ns-resize
|
32
|
+
|
33
|
+
.col-name
|
34
|
+
flex-grow: 1
|
35
|
+
|
36
|
+
a
|
37
|
+
&:hover
|
38
|
+
text-decoration: none
|
39
|
+
|
40
|
+
strong
|
41
|
+
text-decoration: underline
|
42
|
+
|
43
|
+
span
|
44
|
+
opacity: 1
|
45
|
+
|
46
|
+
strong
|
47
|
+
font-weight: normal
|
48
|
+
|
49
|
+
span
|
50
|
+
padding-left: 3px
|
51
|
+
color: darken($gray, 14%)
|
52
|
+
opacity: 0
|
53
|
+
transition: opacity 0.1s
|
54
|
+
|
55
|
+
i
|
56
|
+
font-size: 0.8em
|
57
|
+
|
58
|
+
.col-info
|
59
|
+
i
|
60
|
+
margin: 0 2px
|
61
|
+
|
62
|
+
.col-actions
|
63
|
+
white-space: nowrap
|
64
|
+
text-align: right
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/*
|
2
|
+
* Component: Panels
|
3
|
+
* ----------------
|
4
|
+
*/
|
5
|
+
|
6
|
+
.panel-heading
|
7
|
+
.glyphicon-resize-vertical
|
8
|
+
cursor: ns-resize
|
9
|
+
|
10
|
+
|
11
|
+
.panel-actions
|
12
|
+
a
|
13
|
+
margin: 0 0 0 5px
|
14
|
+
padding: 0 5px
|
15
|
+
color: darken($gray, 22%)
|
16
|
+
|
17
|
+
.glyphicon-trash
|
18
|
+
&:hover
|
19
|
+
color: $brand-danger
|
20
|
+
|
21
|
+
.glyphicon-resize-small
|
22
|
+
&:hover
|
23
|
+
color: $brand-primary
|
@@ -10,16 +10,14 @@ body
|
|
10
10
|
-webkit-font-smoothing: antialiased
|
11
11
|
-moz-osx-font-smoothing: grayscale
|
12
12
|
font-weight: 400
|
13
|
-
overflow
|
14
|
-
overflow-y: auto
|
15
|
-
|
13
|
+
overflow: auto
|
16
14
|
|
17
15
|
/* Layout */
|
18
16
|
.wrapper
|
19
17
|
@include clearfix
|
20
18
|
min-height: 100vh
|
21
19
|
position: relative
|
22
|
-
overflow:
|
20
|
+
overflow: visible !important
|
23
21
|
.layout-boxed &
|
24
22
|
max-width: 1250px
|
25
23
|
margin: 0 auto
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blueberry_admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.1.
|
4
|
+
version: 0.1.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jakub Chrtek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -67,11 +67,14 @@ files:
|
|
67
67
|
- app/assets/stylesheets/blueberry_admin/components/_direct-chat.sass
|
68
68
|
- app/assets/stylesheets/blueberry_admin/components/_dropdown.sass
|
69
69
|
- app/assets/stylesheets/blueberry_admin/components/_filter.sass
|
70
|
+
- app/assets/stylesheets/blueberry_admin/components/_gallery.sass
|
70
71
|
- app/assets/stylesheets/blueberry_admin/components/_header.sass
|
71
72
|
- app/assets/stylesheets/blueberry_admin/components/_info-box.sass
|
72
73
|
- app/assets/stylesheets/blueberry_admin/components/_labels.sass
|
73
74
|
- app/assets/stylesheets/blueberry_admin/components/_modal.sass
|
74
75
|
- app/assets/stylesheets/blueberry_admin/components/_navs.sass
|
76
|
+
- app/assets/stylesheets/blueberry_admin/components/_pages-tree.sass
|
77
|
+
- app/assets/stylesheets/blueberry_admin/components/_panels.sass
|
75
78
|
- app/assets/stylesheets/blueberry_admin/components/_products.sass
|
76
79
|
- app/assets/stylesheets/blueberry_admin/components/_progress-bars.sass
|
77
80
|
- app/assets/stylesheets/blueberry_admin/components/_redactor.sass
|
@@ -116,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
119
|
version: '0'
|
117
120
|
requirements: []
|
118
121
|
rubyforge_project:
|
119
|
-
rubygems_version: 2.
|
122
|
+
rubygems_version: 2.6.8
|
120
123
|
signing_key:
|
121
124
|
specification_version: 4
|
122
125
|
summary: Stylesheets for Blueberry Admin.
|