flashgrid-ext 1.0.0 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +0 -1
- data/flashgrid-ext.gemspec +1 -1
- data/lib/flashgrid/ext/version.rb +1 -1
- data/vendor/assets/javascripts/editor.js +19 -19
- data/vendor/assets/stylesheets/editor.css.scss +32 -36
- metadata +6 -7
- data/vendor/assets/stylesheets/panel.css.scss +0 -156
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a266aa72af30c1e6a75c23291a2bd79ae135cd6a
|
4
|
+
data.tar.gz: 1f8e93666bdfa4296aa57519dc9532b56b750898
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1063abc67e556d696bd1fe3df8453980313ed6ab3460af6112cc571df21df2d5919e4c14b45ae2fb3e62fa76fce1f5c70f33bb21b0aee8494412ed9a92ff0308
|
7
|
+
data.tar.gz: b6894965d6b35926518bd4a8c8aaa0105ed7c67e617c9e56218317561a9de5573bd6d47efe636d0d15fc0c69fbaefcfddd0960b2e6469e61cf8a927fb561e1ec
|
data/README.md
CHANGED
data/flashgrid-ext.gemspec
CHANGED
@@ -1899,16 +1899,16 @@
|
|
1899
1899
|
/* jshint ignore:start */
|
1900
1900
|
tplToolbarInfo = {
|
1901
1901
|
picture: function (lang) {
|
1902
|
-
return '<button type="button" class="btn btn-small" title="' + lang.image.image + '" data-event="showImageDialog" tabindex="-1"><i class="fa fa-picture-o"></i></button>';
|
1902
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.image.image + '" data-event="showImageDialog" tabindex="-1"><i class="fa fa-picture-o"></i></button>';
|
1903
1903
|
},
|
1904
1904
|
link: function (lang) {
|
1905
|
-
return '<button type="button" class="btn btn-small" title="' + lang.link.link + '" data-event="showLinkDialog" data-shortcut="Ctrl+K" data-mac-shortcut="⌘+K" tabindex="-1"><i class="fa fa-link"></i></button>';
|
1905
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.link.link + '" data-event="showLinkDialog" data-shortcut="Ctrl+K" data-mac-shortcut="⌘+K" tabindex="-1"><i class="fa fa-link"></i></button>';
|
1906
1906
|
},
|
1907
1907
|
video: function (lang) {
|
1908
|
-
return '<button type="button" class="btn btn-small" title="' + lang.video.video + '" data-event="showVideoDialog" tabindex="-1"><i class="fa fa-video-camera"></i></button>';
|
1908
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.video.video + '" data-event="showVideoDialog" tabindex="-1"><i class="fa fa-video-camera"></i></button>';
|
1909
1909
|
},
|
1910
1910
|
table: function (lang) {
|
1911
|
-
return '<button type="button" class="btn btn-small dropdown-toggle" title="' + lang.table.table + '" data-toggle="dropdown" tabindex="-1"><i class="fa fa-table"></i> <i class="fa fa-caret-down"></i></button>' +
|
1911
|
+
return '<button type="button" class="btn btn-small btn-white dropdown-toggle" title="' + lang.table.table + '" data-toggle="dropdown" tabindex="-1"><i class="fa fa-table"></i> <i class="fa fa-caret-down"></i></button>' +
|
1912
1912
|
'<ul class="dropdown-menu">' +
|
1913
1913
|
'<div class="editor-dimension-picker">' +
|
1914
1914
|
'<div class="editor-dimension-picker-mousecatcher" data-event="insertTable" data-value="1x1"></div>' +
|
@@ -1919,7 +1919,7 @@
|
|
1919
1919
|
'</ul>';
|
1920
1920
|
},
|
1921
1921
|
style: function (lang) {
|
1922
|
-
return '<button type="button" class="btn btn-small dropdown-toggle" title="' + lang.style.style + '" data-toggle="dropdown" tabindex="-1"><i class="fa fa-magic"></i> <i class="fa fa-caret-down"></i></button>' +
|
1922
|
+
return '<button type="button" class="btn btn-small btn-white dropdown-toggle" title="' + lang.style.style + '" data-toggle="dropdown" tabindex="-1"><i class="fa fa-magic"></i> <i class="fa fa-caret-down"></i></button>' +
|
1923
1923
|
'<ul class="dropdown-menu">' +
|
1924
1924
|
'<li><a data-event="formatBlock" data-value="p">' + lang.style.normal + '</a></li>' +
|
1925
1925
|
'<li><a data-event="formatBlock" data-value="blockquote"><blockquote>' + lang.style.blockquote + '</blockquote></a></li>' +
|
@@ -1933,7 +1933,7 @@
|
|
1933
1933
|
'</ul>';
|
1934
1934
|
},
|
1935
1935
|
fontsize: function (lang) {
|
1936
|
-
return '<button type="button" class="btn btn-small dropdown-toggle" data-toggle="dropdown" title="' + lang.font.size + '" tabindex="-1"><span class="editor-current-fontsize">16</span> <i class="fa fa-caret-down"></i></button>' +
|
1936
|
+
return '<button type="button" class="btn btn-small btn-white dropdown-toggle" data-toggle="dropdown" title="' + lang.font.size + '" tabindex="-1"><span class="editor-current-fontsize">16</span> <i class="fa fa-caret-down"></i></button>' +
|
1937
1937
|
'<ul class="dropdown-menu">' +
|
1938
1938
|
'<li><a data-event="fontSize" data-value="8"><i class="fa fa-check"></i> 8</a></li>' +
|
1939
1939
|
'<li><a data-event="fontSize" data-value="9"><i class="fa fa-check"></i> 9</a></li>' +
|
@@ -1948,8 +1948,8 @@
|
|
1948
1948
|
'</ul>';
|
1949
1949
|
},
|
1950
1950
|
color: function (lang) {
|
1951
|
-
return '<button type="button" class="btn btn-small editor-recent-color" title="' + lang.color.recent + '" data-event="color" data-value=\'{"backColor":"orange"}\' tabindex="-1"><i class="fa fa-font" style="background-color:orange;"></i></button>' +
|
1952
|
-
'<button type="button" class="btn btn-small dropdown-toggle" title="' + lang.color.more + '" data-toggle="dropdown" tabindex="-1">' +
|
1951
|
+
return '<button type="button" class="btn btn-small btn-white editor-recent-color" title="' + lang.color.recent + '" data-event="color" data-value=\'{"backColor":"orange"}\' tabindex="-1"><i class="fa fa-font" style="background-color:orange;"></i></button>' +
|
1952
|
+
'<button type="button" class="btn btn-small btn-white dropdown-toggle" title="' + lang.color.more + '" data-toggle="dropdown" tabindex="-1">' +
|
1953
1953
|
'<i class="fa fa-caret-down"></i>' +
|
1954
1954
|
'</button>' +
|
1955
1955
|
'<ul class="dropdown-menu">' +
|
@@ -1968,25 +1968,25 @@
|
|
1968
1968
|
'</ul>';
|
1969
1969
|
},
|
1970
1970
|
bold: function (lang) {
|
1971
|
-
return '<button type="button" class="btn btn-small" title="' + lang.font.bold + '" data-shortcut="Ctrl+B" data-mac-shortcut="⌘+B" data-event="bold" tabindex="-1"><i class="fa fa-bold"></i></button>';
|
1971
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.font.bold + '" data-shortcut="Ctrl+B" data-mac-shortcut="⌘+B" data-event="bold" tabindex="-1"><i class="fa fa-bold"></i></button>';
|
1972
1972
|
},
|
1973
1973
|
italic: function (lang) {
|
1974
|
-
return '<button type="button" class="btn btn-small" title="' + lang.font.italic + '" data-shortcut="Ctrl+I" data-mac-shortcut="⌘+I" data-event="italic" tabindex="-1"><i class="fa fa-italic"></i></button>';
|
1974
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.font.italic + '" data-shortcut="Ctrl+I" data-mac-shortcut="⌘+I" data-event="italic" tabindex="-1"><i class="fa fa-italic"></i></button>';
|
1975
1975
|
},
|
1976
1976
|
underline: function (lang) {
|
1977
|
-
return '<button type="button" class="btn btn-small" title="' + lang.font.underline + '" data-shortcut="Ctrl+U" data-mac-shortcut="⌘+U" data-event="underline" tabindex="-1"><i class="fa fa-underline"></i></button>';
|
1977
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.font.underline + '" data-shortcut="Ctrl+U" data-mac-shortcut="⌘+U" data-event="underline" tabindex="-1"><i class="fa fa-underline"></i></button>';
|
1978
1978
|
},
|
1979
1979
|
clear: function (lang) {
|
1980
|
-
return '<button type="button" class="btn btn-small" title="' + lang.font.clear + '" data-shortcut="Ctrl+\\" data-mac-shortcut="⌘+\\" data-event="removeFormat" tabindex="-1"><i class="fa fa-eraser"></i></button>';
|
1980
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.font.clear + '" data-shortcut="Ctrl+\\" data-mac-shortcut="⌘+\\" data-event="removeFormat" tabindex="-1"><i class="fa fa-eraser"></i></button>';
|
1981
1981
|
},
|
1982
1982
|
ul: function (lang) {
|
1983
|
-
return '<button type="button" class="btn btn-small" title="' + lang.lists.unordered + '" data-shortcut="Ctrl+Shift+8" data-mac-shortcut="⌘+⇧+7" data-event="insertUnorderedList" tabindex="-1"><i class="fa fa-list-ul"></i></button>';
|
1983
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.lists.unordered + '" data-shortcut="Ctrl+Shift+8" data-mac-shortcut="⌘+⇧+7" data-event="insertUnorderedList" tabindex="-1"><i class="fa fa-list-ul"></i></button>';
|
1984
1984
|
},
|
1985
1985
|
ol: function (lang) {
|
1986
|
-
return '<button type="button" class="btn btn-small" title="' + lang.lists.ordered + '" data-shortcut="Ctrl+Shift+7" data-mac-shortcut="⌘+⇧+8" data-event="insertOrderedList" tabindex="-1"><i class="fa fa-list-ol"></i></button>';
|
1986
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.lists.ordered + '" data-shortcut="Ctrl+Shift+7" data-mac-shortcut="⌘+⇧+8" data-event="insertOrderedList" tabindex="-1"><i class="fa fa-list-ol"></i></button>';
|
1987
1987
|
},
|
1988
1988
|
paragraph: function (lang) {
|
1989
|
-
return '<button type="button" class="btn btn-small dropdown-toggle" title="' + lang.paragraph.paragraph + '" data-toggle="dropdown" tabindex="-1"><i class="fa fa-align-left"></i> <i class="fa fa-caret-down"></i></button>' +
|
1989
|
+
return '<button type="button" class="btn btn-small btn-white dropdown-toggle" title="' + lang.paragraph.paragraph + '" data-toggle="dropdown" tabindex="-1"><i class="fa fa-align-left"></i> <i class="fa fa-caret-down"></i></button>' +
|
1990
1990
|
'<ul class="dropdown-menu">' +
|
1991
1991
|
'<li>' +
|
1992
1992
|
'<div class="editor-align btn-group">' +
|
@@ -2005,7 +2005,7 @@
|
|
2005
2005
|
'</ul>';
|
2006
2006
|
},
|
2007
2007
|
height: function (lang) {
|
2008
|
-
return '<button type="button" class="btn btn-small dropdown-toggle" data-toggle="dropdown" title="' + lang.font.height + '" tabindex="-1"><i class="fa fa-text-height"></i> <i class="fa fa-caret-down"></i></button>' +
|
2008
|
+
return '<button type="button" class="btn btn-small btn-white dropdown-toggle" data-toggle="dropdown" title="' + lang.font.height + '" tabindex="-1"><i class="fa fa-text-height"></i> <i class="fa fa-caret-down"></i></button>' +
|
2009
2009
|
'<ul class="dropdown-menu">' +
|
2010
2010
|
'<li><a data-event="lineHeight" data-value="1.0"><i class="fa fa-check"></i> 1.0</a></li>' +
|
2011
2011
|
'<li><a data-event="lineHeight" data-value="1.2"><i class="fa fa-check"></i> 1.2</a></li>' +
|
@@ -2018,13 +2018,13 @@
|
|
2018
2018
|
'</ul>';
|
2019
2019
|
},
|
2020
2020
|
help: function (lang) {
|
2021
|
-
return '<button type="button" class="btn btn-small" title="' + lang.options.help + '" data-shortcut="Ctrl+/" data-mac-shortcut="⌘+/" data-event="showHelpDialog" tabindex="-1"><i class="fa fa-question"></i></button>';
|
2021
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.options.help + '" data-shortcut="Ctrl+/" data-mac-shortcut="⌘+/" data-event="showHelpDialog" tabindex="-1"><i class="fa fa-question"></i></button>';
|
2022
2022
|
},
|
2023
2023
|
fullscreen: function (lang) {
|
2024
|
-
return '<button type="button" class="btn btn-small" title="' + lang.options.fullscreen + '" data-event="fullscreen" tabindex="-1"><i class="fa fa-arrows-alt"></i></button>';
|
2024
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.options.fullscreen + '" data-event="fullscreen" tabindex="-1"><i class="fa fa-arrows-alt"></i></button>';
|
2025
2025
|
},
|
2026
2026
|
codeview: function (lang) {
|
2027
|
-
return '<button type="button" class="btn btn-small" title="' + lang.options.codeview + '" data-event="codeview" tabindex="-1"><i class="fa fa-code"></i></button>';
|
2027
|
+
return '<button type="button" class="btn btn-small btn-white" title="' + lang.options.codeview + '" data-event="codeview" tabindex="-1"><i class="fa fa-code"></i></button>';
|
2028
2028
|
}
|
2029
2029
|
};
|
2030
2030
|
tplPopover = function (lang) {
|
@@ -51,7 +51,7 @@
|
|
51
51
|
z-index: 1;
|
52
52
|
}
|
53
53
|
.editor-dropzone.hover {
|
54
|
-
|
54
|
+
border-color: rgba(58,144,216,1);
|
55
55
|
color: rgba(58,144,216,1);
|
56
56
|
}
|
57
57
|
.editor-dropzone .editor-dropzone-message {
|
@@ -66,8 +66,8 @@
|
|
66
66
|
/* #Editor Handle
|
67
67
|
================================================== */
|
68
68
|
.editor-canvas .editor-handle .editor-control-selection {
|
69
|
-
|
70
|
-
|
69
|
+
border: 1px solid rgba(217,222,225,1);
|
70
|
+
display: none;
|
71
71
|
position: absolute;
|
72
72
|
}
|
73
73
|
.editor-canvas .editor-handle .editor-control-selection .editor-control-selection-info {
|
@@ -77,8 +77,8 @@
|
|
77
77
|
font-size: 12px;
|
78
78
|
margin: 5px;
|
79
79
|
padding: 5px;
|
80
|
-
|
81
|
-
|
80
|
+
opacity: 0.7;
|
81
|
+
filter: alpha(opacity=70);
|
82
82
|
right: 0;
|
83
83
|
}
|
84
84
|
.editor-canvas .editor-handle .editor-control-selection .editor-control-selection-bg {
|
@@ -122,7 +122,7 @@
|
|
122
122
|
cursor: se-resize;
|
123
123
|
}
|
124
124
|
.editor-canvas .editor-handle .editor-control-selection .editor-control-sw {
|
125
|
-
|
125
|
+
border-top: 0;
|
126
126
|
border-right: 0;
|
127
127
|
bottom: -5px;
|
128
128
|
left: -5px;
|
@@ -132,24 +132,24 @@
|
|
132
132
|
/* #Editor Help
|
133
133
|
================================================== */
|
134
134
|
.editor-help-dialog {
|
135
|
-
|
136
|
-
|
135
|
+
font-size: 12px;
|
136
|
+
line-height: 18px;
|
137
137
|
}
|
138
138
|
.editor-help-dialog .editor-shortcut-layout { width: 100%; }
|
139
139
|
.editor-help-dialog .editor-shortcut-layout td { vertical-align: top; }
|
140
140
|
.editor-help-dialog .editor-shortcut { margin-top: 5px;}
|
141
141
|
.editor-help-dialog .editor-shortcut th {
|
142
|
-
|
142
|
+
color: rgba(71,74,84,1);
|
143
143
|
font-size: 13px;
|
144
144
|
font-weight: bold;
|
145
145
|
padding-bottom: 5px;
|
146
146
|
text-align: left;
|
147
147
|
}
|
148
148
|
.editor-help-dialog .editor-shortcut td:first-child {
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
149
|
+
color: rgba(58,144,216,1);
|
150
|
+
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
151
|
+
font-size: 11px;
|
152
|
+
line-height: 18px;
|
153
153
|
min-width: 110px;
|
154
154
|
padding-right: 10px;
|
155
155
|
text-align: right;
|
@@ -174,15 +174,15 @@
|
|
174
174
|
/* #Editor Dropdown
|
175
175
|
================================================== */
|
176
176
|
.editor-canvas .dropdown-menu.right {
|
177
|
-
|
177
|
+
left: auto;
|
178
178
|
right: 0;
|
179
179
|
}
|
180
180
|
.editor-canvas .dropdown-menu.right::before {
|
181
|
-
|
181
|
+
left: auto!important;
|
182
182
|
right: 9px;
|
183
183
|
}
|
184
184
|
.editor-canvas .dropdown-menu.right::after {
|
185
|
-
|
185
|
+
left: auto!important;
|
186
186
|
right: 10px;
|
187
187
|
}
|
188
188
|
|
@@ -190,7 +190,7 @@
|
|
190
190
|
================================================== */
|
191
191
|
.editor-color-palette { line-height: 1; }
|
192
192
|
.editor-color-palette .editor-color-btn {
|
193
|
-
|
193
|
+
border: 1px solid transparent;
|
194
194
|
height: 17px;
|
195
195
|
margin: 0;
|
196
196
|
padding: 0;
|
@@ -215,11 +215,11 @@
|
|
215
215
|
text-align: center;
|
216
216
|
}
|
217
217
|
.editor-color-reset:hover {
|
218
|
-
|
219
|
-
|
218
|
+
background: rgba(58,144,216,1);
|
219
|
+
color: rgba(255,255,255,1)
|
220
220
|
}
|
221
221
|
.editor-color .dropdown-toggle {
|
222
|
-
|
222
|
+
padding-left: 5px;
|
223
223
|
width: 20px;
|
224
224
|
}
|
225
225
|
.editor-color .dropdown-menu .btn-group:first-child { margin: 0 5px; }
|
@@ -264,27 +264,23 @@
|
|
264
264
|
/* #Editor Toolbar
|
265
265
|
================================================== */
|
266
266
|
.editor-toolbar {
|
267
|
-
|
267
|
+
background-color: rgba(236,238,241,1);
|
268
268
|
border-bottom: 1px solid rgba(217,222,225,1);
|
269
269
|
margin: 0;
|
270
270
|
padding: 1px 0;
|
271
271
|
}
|
272
272
|
.editor-toolbar > .btn-group { margin: 2px 2px 2px 3px; }
|
273
|
-
.editor-toolbar > .btn-group > .btn {
|
274
|
-
background: rgba(255,255,255,1);
|
275
|
-
height: 32px;
|
276
|
-
}
|
277
|
-
.editor-toolbar > .btn-group > .btn:hover { background: rgba(226,228,231,1); }
|
273
|
+
.editor-toolbar > .btn-group > .btn { height: 32px; }
|
278
274
|
.editor-toolbar > .btn-group > .btn.active {
|
279
|
-
|
280
|
-
|
281
|
-
|
275
|
+
background: rgba(71,74,84,1);
|
276
|
+
color: rgba(255,255,255,1);
|
277
|
+
border-bottom-color: rgba(51,54,64,1);
|
282
278
|
}
|
283
279
|
|
284
280
|
/* #Editor Table
|
285
281
|
================================================== */
|
286
282
|
.editor-table .dropdown-menu {
|
287
|
-
|
283
|
+
font-size: 13px;
|
288
284
|
min-width: 0;
|
289
285
|
padding: 5px;
|
290
286
|
}
|
@@ -315,9 +311,9 @@
|
|
315
311
|
================================================== */
|
316
312
|
.editor-para .dropdown-menu { padding: 5px 5px 0 5px; }
|
317
313
|
.editor-para .dropdown-menu .btn.active {
|
318
|
-
|
319
|
-
|
320
|
-
|
314
|
+
background: rgba(71,74,84,1);
|
315
|
+
color: rgba(255,255,255,1);
|
316
|
+
border-bottom-color: rgba(51,54,64,1);
|
321
317
|
}
|
322
318
|
|
323
319
|
/* #Editor Style
|
@@ -336,8 +332,8 @@
|
|
336
332
|
.editor-style a:hover h4,
|
337
333
|
.editor-style a:hover h5,
|
338
334
|
.editor-style a:hover h6 {
|
339
|
-
|
340
|
-
|
335
|
+
color: rgba(58,144,216,1);
|
336
|
+
-webkit-transition: all 0.3s ease-in-out;
|
341
337
|
transition: all 0.3s ease-in-out;
|
342
338
|
text-decoration: none;
|
343
339
|
}
|
@@ -345,7 +341,7 @@
|
|
345
341
|
/* #Editor Fullscreen
|
346
342
|
================================================== */
|
347
343
|
.editor-canvas.fullscreen {
|
348
|
-
|
344
|
+
left: 0;
|
349
345
|
position: fixed;
|
350
346
|
top: 0;
|
351
347
|
width: 100%;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flashgrid-ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '10.1'
|
34
34
|
type: :development
|
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: '
|
40
|
+
version: '10.1'
|
41
41
|
description: Flashgrid Ext. is an extention of useful and cool javascripts for Flashgrid
|
42
42
|
framework.
|
43
43
|
email:
|
@@ -69,7 +69,6 @@ files:
|
|
69
69
|
- vendor/assets/stylesheets/carousel.css.scss
|
70
70
|
- vendor/assets/stylesheets/editor.css.scss
|
71
71
|
- vendor/assets/stylesheets/inline_editor.css.scss
|
72
|
-
- vendor/assets/stylesheets/panel.css.scss
|
73
72
|
- vendor/assets/stylesheets/sort.css.scss
|
74
73
|
homepage: http://flashgrid-ext.drexed.com
|
75
74
|
licenses:
|
@@ -1,156 +0,0 @@
|
|
1
|
-
/* Table of Contents
|
2
|
-
==================================================
|
3
|
-
#Panel */
|
4
|
-
|
5
|
-
/* #Panel
|
6
|
-
================================================== */
|
7
|
-
.panel {
|
8
|
-
background-color: rgba(255,255,255,1);
|
9
|
-
border: 1px solid rgba(217,222,225,1);
|
10
|
-
border-radius: 3px;
|
11
|
-
margin-bottom: 20px;
|
12
|
-
}
|
13
|
-
.panel-body { padding: 15px; }
|
14
|
-
.panel > .list-group { margin-bottom: 0; }
|
15
|
-
.panel > .list-group .list-group-item {
|
16
|
-
border-radius: 0;
|
17
|
-
border-width: 1px 0;
|
18
|
-
}
|
19
|
-
.panel > .list-group .list-group-item:first-child { border-top: 0; }
|
20
|
-
.panel > .list-group .list-group-item:last-child { border-bottom: 0; }
|
21
|
-
.panel > .list-group:first-child .list-group-item:first-child {
|
22
|
-
border-top-right-radius: 2px;
|
23
|
-
border-top-left-radius: 2px;
|
24
|
-
}
|
25
|
-
.panel > .list-group:last-child .list-group-item:last-child {
|
26
|
-
border-bottom-right-radius: 2px;
|
27
|
-
border-bottom-left-radius: 2px;
|
28
|
-
}
|
29
|
-
.panel-header + .list-group .list-group-item:first-child { border-top-width: 0; }
|
30
|
-
.panel > .table,
|
31
|
-
.panel > .table-responsive > .table { margin-bottom: 0; }
|
32
|
-
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
33
|
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
34
|
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
35
|
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
36
|
-
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
37
|
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
38
|
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
39
|
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 2px; }
|
40
|
-
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
41
|
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
42
|
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
43
|
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
44
|
-
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
45
|
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
46
|
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
47
|
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 2px; }
|
48
|
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
49
|
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
50
|
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
51
|
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
52
|
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
53
|
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
54
|
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
55
|
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 2px; }
|
56
|
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
57
|
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
58
|
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
59
|
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
60
|
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
61
|
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
62
|
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
63
|
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 2px; }
|
64
|
-
.panel > .panel-body + .table,
|
65
|
-
.panel > .panel-body + .table-responsive { border-top: 1px solid rgba(217,222,225,1); }
|
66
|
-
.panel > .table > tbody:first-child th,
|
67
|
-
.panel > .table > tbody:first-child td { border-top: 0; }
|
68
|
-
.panel > .table-bordered,
|
69
|
-
.panel > .table-responsive > .table-bordered { border: 0; }
|
70
|
-
.panel > .table-bordered > thead > tr > th:first-child,
|
71
|
-
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
72
|
-
.panel > .table-bordered > tbody > tr > th:first-child,
|
73
|
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
74
|
-
.panel > .table-bordered > tfoot > tr > th:first-child,
|
75
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
76
|
-
.panel > .table-bordered > thead > tr > td:first-child,
|
77
|
-
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
78
|
-
.panel > .table-bordered > tbody > tr > td:first-child,
|
79
|
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
80
|
-
.panel > .table-bordered > tfoot > tr > td:first-child,
|
81
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; }
|
82
|
-
.panel > .table-bordered > thead > tr > th:last-child,
|
83
|
-
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
84
|
-
.panel > .table-bordered > tbody > tr > th:last-child,
|
85
|
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
86
|
-
.panel > .table-bordered > tfoot > tr > th:last-child,
|
87
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
88
|
-
.panel > .table-bordered > thead > tr > td:last-child,
|
89
|
-
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
90
|
-
.panel > .table-bordered > tbody > tr > td:last-child,
|
91
|
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
92
|
-
.panel > .table-bordered > tfoot > tr > td:last-child,
|
93
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
|
94
|
-
.panel > .table-bordered > thead > tr:first-child > th,
|
95
|
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
96
|
-
.panel > .table-bordered > tbody > tr:first-child > th,
|
97
|
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
|
98
|
-
.panel > .table-bordered > tfoot > tr:first-child > th,
|
99
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > th,
|
100
|
-
.panel > .table-bordered > thead > tr:first-child > td,
|
101
|
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
102
|
-
.panel > .table-bordered > tbody > tr:first-child > td,
|
103
|
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
104
|
-
.panel > .table-bordered > tfoot > tr:first-child > td,
|
105
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > td { border-top: 0; }
|
106
|
-
.panel > .table-bordered > thead > tr:last-child > th,
|
107
|
-
.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
|
108
|
-
.panel > .table-bordered > tbody > tr:last-child > th,
|
109
|
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
110
|
-
.panel > .table-bordered > tfoot > tr:last-child > th,
|
111
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
112
|
-
.panel > .table-bordered > thead > tr:last-child > td,
|
113
|
-
.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
|
114
|
-
.panel > .table-bordered > tbody > tr:last-child > td,
|
115
|
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
116
|
-
.panel > .table-bordered > tfoot > tr:last-child > td,
|
117
|
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
|
118
|
-
.panel > .table-responsive {
|
119
|
-
border: 0;
|
120
|
-
margin-bottom: 0;
|
121
|
-
}
|
122
|
-
.panel-header {
|
123
|
-
background-color: rgba(236,238,241,1);
|
124
|
-
border-bottom: 1px solid rgba(217,222,225,1);
|
125
|
-
border-top-right-radius: 3px;
|
126
|
-
border-top-left-radius: 3px;
|
127
|
-
padding: 10px 15px;
|
128
|
-
}
|
129
|
-
.panel-header > .dropdown .dropdown-toggle { color: rgba(71,74,84,1); }
|
130
|
-
.panel-title {
|
131
|
-
color: rgba(71,74,84,1);
|
132
|
-
font-size: 16px;
|
133
|
-
line-height: 16px;
|
134
|
-
margin-bottom: 0;
|
135
|
-
margin-top: 0;
|
136
|
-
}
|
137
|
-
.panel-title > a { color: rgba(71,74,84,1); }
|
138
|
-
.panel-title > a:hover { color: rgba(58,144,216,1); }
|
139
|
-
.panel-footer {
|
140
|
-
background-color: rgba(236,238,241,1);
|
141
|
-
border-top: 1px solid rgba(217,222,225,1);
|
142
|
-
border-bottom-right-radius: 3px;
|
143
|
-
border-bottom-left-radius: 3px;
|
144
|
-
padding: 11px 15px 9px 15px;
|
145
|
-
}
|
146
|
-
.panel-group { margin-bottom: 20px; }
|
147
|
-
.panel-group .panel {
|
148
|
-
border-radius: 3px;
|
149
|
-
margin-bottom: 0;
|
150
|
-
overflow: hidden;
|
151
|
-
}
|
152
|
-
.panel-group .panel + .panel { margin-top: 5px; }
|
153
|
-
.panel-group .panel-header { border-bottom: 0; }
|
154
|
-
.panel-group .panel-header + .panel-collapse .panel-body { border-top: 1px solid rgba(217,222,225,1); }
|
155
|
-
.panel-group .panel-footer { border-top: 0; }
|
156
|
-
.panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid rgba(217,222,225,1); }
|