@grafit/era-dependencies 1.0.0
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.
- package/package.json +7 -0
- package/vendor/fonts/FontAwesome.otf +0 -0
- package/vendor/fonts/fontawesome-webfont.eot +0 -0
- package/vendor/fonts/fontawesome-webfont.svg +685 -0
- package/vendor/fonts/fontawesome-webfont.ttf +0 -0
- package/vendor/fonts/fontawesome-webfont.woff +0 -0
- package/vendor/fonts/fontawesome-webfont.woff2 +0 -0
- package/vendor/fonts/glyphicons-halflings-regular.eot +0 -0
- package/vendor/fonts/glyphicons-halflings-regular.svg +288 -0
- package/vendor/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/vendor/fonts/glyphicons-halflings-regular.woff +0 -0
- package/vendor/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/vendor/scripts/angular/angular-cookies.js +322 -0
- package/vendor/scripts/angular/angular-file-upload.js +2087 -0
- package/vendor/scripts/angular/angular-filter.js +2287 -0
- package/vendor/scripts/angular/angular-locale_ru-ru.js +143 -0
- package/vendor/scripts/angular/angular-route.js +1069 -0
- package/vendor/scripts/angular/angular-sanitize.js +738 -0
- package/vendor/scripts/angular/angular-ui-router-0.2.18.js +4539 -0
- package/vendor/scripts/angular/angular.js +31768 -0
- package/vendor/scripts/angular/datetimepicker.js +578 -0
- package/vendor/scripts/angular/datetimepicker.templates.js +30 -0
- package/vendor/scripts/angular/mask.min.js +7 -0
- package/vendor/scripts/angular/ng-table.js +1518 -0
- package/vendor/scripts/angular/select.js +2356 -0
- package/vendor/scripts/angular/ui-bootstrap-tpls-2.1.3.js +7536 -0
- package/vendor/scripts/angular/uploader.js +3 -0
- package/vendor/scripts/bootbox.js +985 -0
- package/vendor/scripts/bootstrap.js +2377 -0
- package/vendor/scripts/es6-shim.js +3837 -0
- package/vendor/scripts/highchart/highcharts-more.src.js +3165 -0
- package/vendor/scripts/highchart/highstock.src.js +32008 -0
- package/vendor/scripts/highchart/modules/boost.src.js +2721 -0
- package/vendor/scripts/highchart/modules/exporting.src.js +951 -0
- package/vendor/scripts/jquery/jquery.js +11008 -0
- package/vendor/scripts/jquery.datetimepicker.full.js +2911 -0
- package/vendor/scripts/keycloak.js +2382 -0
- package/vendor/scripts/lodash.js +16733 -0
- package/vendor/scripts/moment-with-locales.js +12251 -0
- package/vendor/scripts/moment.js +4234 -0
- package/vendor/scripts/old/datepicker-ru.js +38 -0
- package/vendor/scripts/old/jquery-ui-1.11.1.js +16375 -0
- package/vendor/scripts/old/jquery.form.js +1278 -0
- package/vendor/scripts/perfect-scrollbar.js +1549 -0
- package/vendor/scripts/pickmeup/pickmeup-locales.js +11 -0
- package/vendor/scripts/pickmeup/pickmeup.js +1383 -0
- package/vendor/scripts/quill.js +9676 -0
- package/vendor/scripts/socket.io.min.js +3 -0
- package/vendor/scripts/textAngular/angular-spectrum-colorpicker.min.js +2 -0
- package/vendor/scripts/textAngular/spectrum.min.js +1 -0
- package/vendor/scripts/textAngular/textAngular-dropdownToggle.js +38 -0
- package/vendor/scripts/textAngular/textAngular-rangy.min.js +478 -0
- package/vendor/scripts/textAngular/textAngular-sanitize.min.js +322 -0
- package/vendor/scripts/textAngular/textAngular.min.js +1481 -0
- package/vendor/scripts/textAngular/textAngularSetup.js +1013 -0
- package/vendor/styles/bootstrap-theme.css +587 -0
- package/vendor/styles/bootstrap-theme.css.map +1 -0
- package/vendor/styles/bootstrap-theme.min.css +6 -0
- package/vendor/styles/bootstrap-theme.min.css.map +1 -0
- package/vendor/styles/bootstrap.css +6757 -0
- package/vendor/styles/bootstrap.css.map +1 -0
- package/vendor/styles/bootstrap.min.css +6 -0
- package/vendor/styles/bootstrap.min.css.map +1 -0
- package/vendor/styles/datetimepicker.css +115 -0
- package/vendor/styles/font-awesome.css +2199 -0
- package/vendor/styles/jquery.datetimepicker.min.css +1 -0
- package/vendor/styles/ng-table.css +136 -0
- package/vendor/styles/normalize.css +424 -0
- package/vendor/styles/perfect-scrollbar.css +165 -0
- package/vendor/styles/pickmeup.css +137 -0
- package/vendor/styles/spectrum.min.css +1 -0
- package/vendor/styles/textAngular.css +193 -0
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
/* perfect-scrollbar v0.6.12 */
|
|
2
|
+
.ps-container {
|
|
3
|
+
-ms-touch-action: none;
|
|
4
|
+
touch-action: none;
|
|
5
|
+
overflow: hidden !important;
|
|
6
|
+
-ms-overflow-style: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@supports (-ms-overflow-style: none) {
|
|
10
|
+
.ps-container {
|
|
11
|
+
overflow: auto !important;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
16
|
+
.ps-container {
|
|
17
|
+
overflow: auto !important;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ps-container.ps-active-x > .ps-scrollbar-x-rail,
|
|
22
|
+
.ps-container.ps-active-y > .ps-scrollbar-y-rail {
|
|
23
|
+
display: block;
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
z-index: 20
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.ps-container.ps-in-scrolling {
|
|
29
|
+
pointer-events: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
|
|
33
|
+
background-color: #eee;
|
|
34
|
+
opacity: 0.9;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
|
|
38
|
+
background-color: #999;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
|
|
42
|
+
background-color: #eee;
|
|
43
|
+
opacity: 0.9;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
|
|
47
|
+
background-color: #999;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.ps-container > .ps-scrollbar-x-rail {
|
|
51
|
+
display: none;
|
|
52
|
+
position: absolute;
|
|
53
|
+
/* please don't change 'position' */
|
|
54
|
+
opacity: 0;
|
|
55
|
+
-webkit-transition: background-color .2s linear, opacity .2s linear;
|
|
56
|
+
-moz-transition: background-color .2s linear, opacity .2s linear;
|
|
57
|
+
-o-transition: background-color .2s linear, opacity .2s linear;
|
|
58
|
+
transition: background-color .2s linear, opacity .2s linear;
|
|
59
|
+
bottom: 0px;
|
|
60
|
+
/* there must be 'bottom' for ps-scrollbar-x-rail */
|
|
61
|
+
height: 15px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
|
|
65
|
+
position: absolute;
|
|
66
|
+
/* please don't change 'position' */
|
|
67
|
+
background-color: #aaa;
|
|
68
|
+
-webkit-border-radius: 6px;
|
|
69
|
+
-moz-border-radius: 6px;
|
|
70
|
+
border-radius: 6px;
|
|
71
|
+
-webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
|
|
72
|
+
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
|
|
73
|
+
-moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
|
|
74
|
+
-o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
|
|
75
|
+
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
|
|
76
|
+
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
|
|
77
|
+
bottom: 2px;
|
|
78
|
+
/* there must be 'bottom' for ps-scrollbar-x */
|
|
79
|
+
height: 6px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.ps-container > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x, .ps-container > .ps-scrollbar-x-rail:active > .ps-scrollbar-x {
|
|
83
|
+
height: 11px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ps-container > .ps-scrollbar-y-rail {
|
|
87
|
+
display: none;
|
|
88
|
+
position: absolute;
|
|
89
|
+
/* please don't change 'position' */
|
|
90
|
+
opacity: 0;
|
|
91
|
+
-webkit-transition: background-color .2s linear, opacity .2s linear;
|
|
92
|
+
-moz-transition: background-color .2s linear, opacity .2s linear;
|
|
93
|
+
-o-transition: background-color .2s linear, opacity .2s linear;
|
|
94
|
+
transition: background-color .2s linear, opacity .2s linear;
|
|
95
|
+
right: 0;
|
|
96
|
+
/* there must be 'right' for ps-scrollbar-y-rail */
|
|
97
|
+
width: 15px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
|
|
101
|
+
position: absolute;
|
|
102
|
+
/* please don't change 'position' */
|
|
103
|
+
background-color: #aaa;
|
|
104
|
+
-webkit-border-radius: 6px;
|
|
105
|
+
-moz-border-radius: 6px;
|
|
106
|
+
border-radius: 6px;
|
|
107
|
+
-webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
|
|
108
|
+
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
|
|
109
|
+
-moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
|
|
110
|
+
-o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
|
|
111
|
+
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
|
|
112
|
+
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
|
|
113
|
+
right: 2px;
|
|
114
|
+
/* there must be 'right' for ps-scrollbar-y */
|
|
115
|
+
width: 6px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.ps-container > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y, .ps-container > .ps-scrollbar-y-rail:active > .ps-scrollbar-y {
|
|
119
|
+
width: 11px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.ps-container:hover.ps-in-scrolling {
|
|
123
|
+
pointer-events: none;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
|
|
127
|
+
background-color: #eee;
|
|
128
|
+
opacity: 0.9;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
|
|
132
|
+
background-color: #999;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
|
|
136
|
+
background-color: #eee;
|
|
137
|
+
opacity: 0.9;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
|
|
141
|
+
background-color: #999;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.ps-container:hover > .ps-scrollbar-x-rail,
|
|
145
|
+
.ps-container:hover > .ps-scrollbar-y-rail {
|
|
146
|
+
opacity: 0.6;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.ps-container:hover > .ps-scrollbar-x-rail:hover {
|
|
150
|
+
background-color: #eee;
|
|
151
|
+
opacity: 0.9;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
|
|
155
|
+
background-color: #999;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.ps-container:hover > .ps-scrollbar-y-rail:hover {
|
|
159
|
+
background-color: #eee;
|
|
160
|
+
opacity: 0.9;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
|
|
164
|
+
background-color: #999;
|
|
165
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
.pickmeup {
|
|
2
|
+
background: white;
|
|
3
|
+
border-radius: .4em;
|
|
4
|
+
-moz-box-sizing: content-box;
|
|
5
|
+
box-sizing: content-box;
|
|
6
|
+
display: inline-block;
|
|
7
|
+
position: absolute;
|
|
8
|
+
touch-action: manipulation;
|
|
9
|
+
border: 1px solid #ddd;
|
|
10
|
+
box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
|
|
11
|
+
z-index: 1100;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.pickmeup * {
|
|
15
|
+
-moz-box-sizing: border-box;
|
|
16
|
+
box-sizing: border-box
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.pickmeup.pmu-flat {
|
|
20
|
+
position: relative
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.pickmeup.pmu-hidden {
|
|
24
|
+
display: none
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.pickmeup .pmu-instance {
|
|
28
|
+
display: inline-block;
|
|
29
|
+
height: 13.8em;
|
|
30
|
+
padding: .5em;
|
|
31
|
+
text-align: center;
|
|
32
|
+
width: 15em
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.pickmeup .pmu-instance .pmu-button {
|
|
36
|
+
color: black;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
outline: none;
|
|
39
|
+
text-decoration: none
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.pickmeup .pmu-instance .pmu-today {
|
|
43
|
+
background: rgba(19, 106, 159, 0.4);
|
|
44
|
+
color: black;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.pickmeup .pmu-instance .pmu-button:hover {
|
|
48
|
+
background: rgba(19, 106, 159, 0.1);
|
|
49
|
+
color: #0070ba;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.pickmeup .pmu-instance .pmu-selected:hover {
|
|
53
|
+
background: rgba(19, 106, 159, 0.7);
|
|
54
|
+
color: white;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.pickmeup .pmu-instance .pmu-today:hover {
|
|
58
|
+
background: rgba(19, 106, 159, 0.6);
|
|
59
|
+
color: black;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.pickmeup .pmu-instance .pmu-not-in-month {
|
|
63
|
+
color: #666
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.pickmeup .pmu-instance .pmu-disabled, .pickmeup .pmu-instance .pmu-disabled:hover {
|
|
67
|
+
color: #333;
|
|
68
|
+
cursor: default
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.pickmeup .pmu-instance .pmu-selected {
|
|
72
|
+
background: #136a9f;
|
|
73
|
+
color: #eee
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.pickmeup .pmu-instance .pmu-not-in-month.pmu-selected {
|
|
77
|
+
background: #17384d
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.pickmeup .pmu-instance nav {
|
|
81
|
+
color: #eee;
|
|
82
|
+
display: -ms-flexbox;
|
|
83
|
+
display: -webkit-flex;
|
|
84
|
+
display: flex;
|
|
85
|
+
line-height: 2em
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.pickmeup .pmu-instance nav *:first-child :hover {
|
|
89
|
+
color: #0070ba;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.pickmeup .pmu-instance nav .pmu-prev, .pickmeup .pmu-instance nav .pmu-next {
|
|
93
|
+
display: none;
|
|
94
|
+
height: 2em;
|
|
95
|
+
width: 1em
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.pickmeup .pmu-instance nav .pmu-month {
|
|
99
|
+
width: 14em
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.pickmeup .pmu-instance .pmu-years *, .pickmeup .pmu-instance .pmu-months * {
|
|
103
|
+
display: inline-block;
|
|
104
|
+
line-height: 3.6em;
|
|
105
|
+
width: 3.5em
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.pickmeup .pmu-instance .pmu-day-of-week {
|
|
109
|
+
color: #999;
|
|
110
|
+
cursor: default
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.pickmeup .pmu-instance .pmu-day-of-week *, .pickmeup .pmu-instance .pmu-days * {
|
|
114
|
+
display: inline-block;
|
|
115
|
+
line-height: 1.5em;
|
|
116
|
+
width: 2em
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.pickmeup .pmu-instance .pmu-day-of-week * {
|
|
120
|
+
line-height: 1.8em
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.pickmeup .pmu-instance:first-child .pmu-prev, .pickmeup .pmu-instance:last-child .pmu-next {
|
|
124
|
+
display: block
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.pickmeup .pmu-instance:first-child .pmu-month, .pickmeup .pmu-instance:last-child .pmu-month {
|
|
128
|
+
width: 13em
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.pickmeup .pmu-instance:first-child:last-child .pmu-month {
|
|
132
|
+
width: 12em
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.pickmeup:not(.pmu-view-days) .pmu-days, .pickmeup:not(.pmu-view-days) .pmu-day-of-week, .pickmeup:not(.pmu-view-months) .pmu-months, .pickmeup:not(.pmu-view-years) .pmu-years {
|
|
136
|
+
display: none
|
|
137
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.sp-container{position:absolute;top:0;left:0;display:inline-block;*display:inline;*zoom:1;z-index:9999994;overflow:hidden}.sp-container.sp-flat{position:relative}.sp-container,.sp-container *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.sp-top{position:relative;width:100%;display:inline-block}.sp-top-inner{position:absolute;top:0;left:0;bottom:0;right:0}.sp-color{position:absolute;top:0;left:0;bottom:0;right:20%}.sp-hue{position:absolute;top:0;right:0;bottom:0;left:84%;height:100%}.sp-clear-enabled .sp-hue{top:33px;height:77.5%}.sp-fill{padding-top:80%}.sp-sat,.sp-val{position:absolute;top:0;left:0;right:0;bottom:0}.sp-alpha-enabled .sp-top{margin-bottom:18px}.sp-alpha-enabled .sp-alpha{display:block}.sp-alpha-handle{position:absolute;top:-4px;bottom:-4px;width:6px;left:50%;cursor:pointer;border:1px solid black;background:white;opacity:.8}.sp-alpha{display:none;position:absolute;bottom:-14px;right:0;left:0;height:8px}.sp-alpha-inner{border:solid 1px #333}.sp-clear{display:none}.sp-clear.sp-clear-display{background-position:center}.sp-clear-enabled .sp-clear{display:block;position:absolute;top:0;right:0;bottom:0;left:84%;height:28px}.sp-container,.sp-replacer,.sp-preview,.sp-dragger,.sp-slider,.sp-alpha,.sp-clear,.sp-alpha-handle,.sp-container.sp-dragging .sp-input,.sp-container button{-webkit-user-select:none;-moz-user-select:-moz-none;-o-user-select:none;user-select:none}.sp-container.sp-input-disabled .sp-input-container{display:none}.sp-container.sp-buttons-disabled .sp-button-container{display:none}.sp-container.sp-palette-buttons-disabled .sp-palette-button-container{display:none}.sp-palette-only .sp-picker-container{display:none}.sp-palette-disabled .sp-palette-container{display:none}.sp-initial-disabled .sp-initial{display:none}.sp-sat{background-image:-webkit-gradient(linear,0 0,100% 0,from(#FFF),to(rgba(204,154,129,0)));background-image:-webkit-linear-gradient(left,#FFF,rgba(204,154,129,0));background-image:-moz-linear-gradient(left,#fff,rgba(204,154,129,0));background-image:-o-linear-gradient(left,#fff,rgba(204,154,129,0));background-image:-ms-linear-gradient(left,#fff,rgba(204,154,129,0));background-image:linear-gradient(to right,#fff,rgba(204,154,129,0));-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";filter:progid:DXImageTransform.Microsoft.gradient(GradientType = 1,startColorstr='#FFFFFFFF',endColorstr='#00CC9A81')}.sp-val{background-image:-webkit-gradient(linear,0 100%,0 0,from(#000),to(rgba(204,154,129,0)));background-image:-webkit-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:-moz-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:-o-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:-ms-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:linear-gradient(to top,#000,rgba(204,154,129,0));-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81',endColorstr='#FF000000')}.sp-hue{background:-moz-linear-gradient(top,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00 100%);background:-ms-linear-gradient(top,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00 100%);background:-o-linear-gradient(top,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00 100%);background:-webkit-gradient(linear,left top,left bottom,from(#f00),color-stop(0.17,#ff0),color-stop(0.33,#0f0),color-stop(0.5,#0ff),color-stop(0.67,#00f),color-stop(0.83,#f0f),to(#f00));background:-webkit-linear-gradient(top,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00 100%);background:linear-gradient(to bottom,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00 100%)}.sp-1{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000',endColorstr='#ffff00')}.sp-2{height:16%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00',endColorstr='#00ff00')}.sp-3{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00',endColorstr='#00ffff')}.sp-4{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff',endColorstr='#0000ff')}.sp-5{height:16%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff',endColorstr='#ff00ff')}.sp-6{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff',endColorstr='#ff0000')}.sp-hidden{display:none !important}.sp-cf:before,.sp-cf:after{content:"";display:table}.sp-cf:after{clear:both}.sp-cf{*zoom:1}@media(max-device-width:480px){.sp-color{right:40%}.sp-hue{left:63%}.sp-fill{padding-top:60%}}.sp-dragger{border-radius:5px;height:5px;width:5px;border:1px solid #fff;background:#000;cursor:pointer;position:absolute;top:0;left:0}.sp-slider{position:absolute;top:0;cursor:pointer;height:3px;left:-1px;right:-1px;border:1px solid #000;background:white;opacity:.8}.sp-container{border-radius:0;background-color:#ececec;border:solid 1px #f0c49b;padding:0}.sp-container,.sp-container button,.sp-container input,.sp-color,.sp-hue,.sp-clear{font:normal 12px "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.sp-top{margin-bottom:3px}.sp-color,.sp-hue,.sp-clear{border:solid 1px #666}.sp-input-container{float:right;width:100px;margin-bottom:4px}.sp-initial-disabled .sp-input-container{width:100%}.sp-input{font-size:12px !important;border:1px inset;padding:4px 5px;margin:0;width:100%;background:transparent;border-radius:3px;color:#222}.sp-input:focus{border:1px solid orange}.sp-input.sp-validation-error{border:1px solid red;background:#fdd}.sp-picker-container,.sp-palette-container{float:left;position:relative;padding:10px;padding-bottom:300px;margin-bottom:-290px}.sp-picker-container{width:172px;border-left:solid 1px #fff}.sp-palette-container{border-right:solid 1px #ccc}.sp-palette-only .sp-palette-container{border:0}.sp-palette .sp-thumb-el{display:block;position:relative;float:left;width:24px;height:15px;margin:3px;cursor:pointer;border:solid 2px transparent}.sp-palette .sp-thumb-el:hover,.sp-palette .sp-thumb-el.sp-thumb-active{border-color:orange}.sp-thumb-el{position:relative}.sp-initial{float:left;border:solid 1px #333}.sp-initial span{width:30px;height:25px;border:0;display:block;float:left;margin:0}.sp-initial .sp-clear-display{background-position:center}.sp-palette-button-container,.sp-button-container{float:right}.sp-replacer{margin:0;overflow:hidden;cursor:pointer;display:inline-block;*zoom:1;*display:inline;border:solid 1px #91765d;background:#eee;color:#333;vertical-align:middle}.sp-replacer:hover,.sp-replacer.sp-active{border-color:#f0c49b;color:#111}.sp-replacer.sp-disabled{cursor:default;border-color:silver;color:silver}.sp-dd{padding:2px 0;height:16px;line-height:16px;float:left;font-size:10px}.sp-preview{position:relative;width:25px;height:15px;border:solid 1px #222;margin-right:5px;float:left;z-index:0}.sp-palette{*width:220px;max-width:220px}.sp-palette .sp-thumb-el{width:16px;height:16px;margin:2px 1px;border:solid 1px #d0d0d0}.sp-container{padding-bottom:0}.sp-container button{background-color:#eee;background-image:-webkit-linear-gradient(top,#eee,#ccc);background-image:-moz-linear-gradient(top,#eee,#ccc);background-image:-ms-linear-gradient(top,#eee,#ccc);background-image:-o-linear-gradient(top,#eee,#ccc);background-image:linear-gradient(to bottom,#eee,#ccc);border:1px solid #ccc;border-bottom:1px solid #bbb;border-radius:3px;color:#333;font-size:14px;line-height:1;padding:5px 4px;text-align:center;text-shadow:0 1px 0 #eee;vertical-align:middle}.sp-container button:hover{background-color:#ddd;background-image:-webkit-linear-gradient(top,#ddd,#bbb);background-image:-moz-linear-gradient(top,#ddd,#bbb);background-image:-ms-linear-gradient(top,#ddd,#bbb);background-image:-o-linear-gradient(top,#ddd,#bbb);background-image:linear-gradient(to bottom,#ddd,#bbb);border:1px solid #bbb;border-bottom:1px solid #999;cursor:pointer;text-shadow:0 1px 0 #ddd}.sp-container button:active{border:1px solid #aaa;border-bottom:1px solid #888;-webkit-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;-moz-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;-ms-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;-o-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee}.sp-cancel{font-size:11px;color:#d93f3f !important;margin:0;padding:2px;margin-right:5px;vertical-align:middle;text-decoration:none}.sp-cancel:hover{color:#d93f3f !important;text-decoration:underline}.sp-palette span:hover,.sp-palette span.sp-thumb-active{border-color:#000}.sp-preview,.sp-alpha,.sp-thumb-el{position:relative;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.sp-preview-inner,.sp-alpha-inner,.sp-thumb-inner{display:block;position:absolute;top:0;left:0;bottom:0;right:0}.sp-palette .sp-thumb-inner{background-position:50% 50%;background-repeat:no-repeat}.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=)}.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=)}.sp-clear-display{background-repeat:no-repeat;background-position:center;background-image:url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==)}
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
.ta-hidden-input {
|
|
2
|
+
width: 1px;
|
|
3
|
+
height: 1px;
|
|
4
|
+
border: none;
|
|
5
|
+
margin: 0;
|
|
6
|
+
padding: 0;
|
|
7
|
+
position: absolute;
|
|
8
|
+
top: -10000px;
|
|
9
|
+
left: -10000px;
|
|
10
|
+
opacity: 0;
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/* add generic styling for the editor */
|
|
15
|
+
.ta-root.focussed > .ta-scroll-window.form-control {
|
|
16
|
+
border-color: #66afe9;
|
|
17
|
+
outline: 0;
|
|
18
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
|
19
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
|
20
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ta-editor.ta-html, .ta-scroll-window.form-control {
|
|
24
|
+
min-height: 300px;
|
|
25
|
+
height: auto;
|
|
26
|
+
overflow: auto;
|
|
27
|
+
font-family: inherit;
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ta-scroll-window.form-control {
|
|
32
|
+
position: relative;
|
|
33
|
+
padding: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.ta-scroll-window > .ta-bind {
|
|
37
|
+
height: auto;
|
|
38
|
+
min-height: 300px;
|
|
39
|
+
padding: 6px 12px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ta-editor:focus {
|
|
43
|
+
user-select: text;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* add the styling for the awesomness of the resizer */
|
|
47
|
+
.ta-resizer-handle-overlay {
|
|
48
|
+
z-index: 100;
|
|
49
|
+
position: absolute;
|
|
50
|
+
display: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.ta-resizer-handle-overlay > .ta-resizer-handle-info {
|
|
54
|
+
position: absolute;
|
|
55
|
+
bottom: 16px;
|
|
56
|
+
right: 16px;
|
|
57
|
+
border: 1px solid black;
|
|
58
|
+
background-color: #FFF;
|
|
59
|
+
padding: 0 4px;
|
|
60
|
+
opacity: 0.7;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.ta-resizer-handle-overlay > .ta-resizer-handle-background {
|
|
64
|
+
position: absolute;
|
|
65
|
+
bottom: 5px;
|
|
66
|
+
right: 5px;
|
|
67
|
+
left: 5px;
|
|
68
|
+
top: 5px;
|
|
69
|
+
border: 1px solid black;
|
|
70
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.ta-resizer-handle-overlay > .ta-resizer-handle-corner {
|
|
74
|
+
width: 10px;
|
|
75
|
+
height: 10px;
|
|
76
|
+
position: absolute;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tl{
|
|
80
|
+
top: 0;
|
|
81
|
+
left: 0;
|
|
82
|
+
border-left: 1px solid black;
|
|
83
|
+
border-top: 1px solid black;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tr{
|
|
87
|
+
top: 0;
|
|
88
|
+
right: 0;
|
|
89
|
+
border-right: 1px solid black;
|
|
90
|
+
border-top: 1px solid black;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-bl{
|
|
94
|
+
bottom: 0;
|
|
95
|
+
left: 0;
|
|
96
|
+
border-left: 1px solid black;
|
|
97
|
+
border-bottom: 1px solid black;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-br{
|
|
101
|
+
bottom: 0;
|
|
102
|
+
right: 0;
|
|
103
|
+
border: 1px solid black;
|
|
104
|
+
cursor: se-resize;
|
|
105
|
+
background-color: white;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/* copy the popover code from bootstrap so this will work even without it */
|
|
109
|
+
.popover {
|
|
110
|
+
position: absolute;
|
|
111
|
+
top: 0;
|
|
112
|
+
left: 0;
|
|
113
|
+
z-index: 1060;
|
|
114
|
+
display: none;
|
|
115
|
+
max-width: 276px;
|
|
116
|
+
padding: 1px;
|
|
117
|
+
font-size: 14px;
|
|
118
|
+
font-weight: normal;
|
|
119
|
+
line-height: 1.42857143;
|
|
120
|
+
text-align: left;
|
|
121
|
+
white-space: normal;
|
|
122
|
+
background-color: #fff;
|
|
123
|
+
-webkit-background-clip: padding-box;
|
|
124
|
+
background-clip: padding-box;
|
|
125
|
+
border: 1px solid #ccc;
|
|
126
|
+
border: 1px solid rgba(0, 0, 0, .2);
|
|
127
|
+
border-radius: 6px;
|
|
128
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
|
129
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
|
130
|
+
}
|
|
131
|
+
.popover.top {
|
|
132
|
+
margin-top: -10px;
|
|
133
|
+
}
|
|
134
|
+
.popover.bottom {
|
|
135
|
+
margin-top: 10px;
|
|
136
|
+
}
|
|
137
|
+
.popover-title {
|
|
138
|
+
padding: 8px 14px;
|
|
139
|
+
margin: 0;
|
|
140
|
+
font-size: 14px;
|
|
141
|
+
background-color: #f7f7f7;
|
|
142
|
+
border-bottom: 1px solid #ebebeb;
|
|
143
|
+
border-radius: 5px 5px 0 0;
|
|
144
|
+
}
|
|
145
|
+
.popover-content {
|
|
146
|
+
padding: 9px 14px;
|
|
147
|
+
}
|
|
148
|
+
.popover > .arrow,
|
|
149
|
+
.popover > .arrow:after {
|
|
150
|
+
position: absolute;
|
|
151
|
+
display: block;
|
|
152
|
+
width: 0;
|
|
153
|
+
height: 0;
|
|
154
|
+
border-color: transparent;
|
|
155
|
+
border-style: solid;
|
|
156
|
+
}
|
|
157
|
+
.popover > .arrow {
|
|
158
|
+
border-width: 11px;
|
|
159
|
+
}
|
|
160
|
+
.popover > .arrow:after {
|
|
161
|
+
content: "";
|
|
162
|
+
border-width: 10px;
|
|
163
|
+
}
|
|
164
|
+
.popover.top > .arrow {
|
|
165
|
+
bottom: -11px;
|
|
166
|
+
left: 50%;
|
|
167
|
+
margin-left: -11px;
|
|
168
|
+
border-top-color: #999;
|
|
169
|
+
border-top-color: rgba(0, 0, 0, .25);
|
|
170
|
+
border-bottom-width: 0;
|
|
171
|
+
}
|
|
172
|
+
.popover.top > .arrow:after {
|
|
173
|
+
bottom: 1px;
|
|
174
|
+
margin-left: -10px;
|
|
175
|
+
content: " ";
|
|
176
|
+
border-top-color: #fff;
|
|
177
|
+
border-bottom-width: 0;
|
|
178
|
+
}
|
|
179
|
+
.popover.bottom > .arrow {
|
|
180
|
+
top: -11px;
|
|
181
|
+
left: 50%;
|
|
182
|
+
margin-left: -11px;
|
|
183
|
+
border-top-width: 0;
|
|
184
|
+
border-bottom-color: #999;
|
|
185
|
+
border-bottom-color: rgba(0, 0, 0, .25);
|
|
186
|
+
}
|
|
187
|
+
.popover.bottom > .arrow:after {
|
|
188
|
+
top: 1px;
|
|
189
|
+
margin-left: -10px;
|
|
190
|
+
content: " ";
|
|
191
|
+
border-top-width: 0;
|
|
192
|
+
border-bottom-color: #fff;
|
|
193
|
+
}
|