@oat-sa/tao-core-ui 1.58.1 → 1.58.2
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/dist/actionbar.js +386 -395
- package/dist/adder.js +21 -19
- package/dist/animable/absorbable/absorbable.js +204 -213
- package/dist/animable/absorbable/css/absorb.css +1 -0
- package/dist/animable/absorbable/css/absorb.css.map +1 -1
- package/dist/animable/pulsable/pulsable.js +168 -177
- package/dist/autocomplete/css/autocomplete.css +1 -0
- package/dist/autocomplete/css/autocomplete.css.map +1 -1
- package/dist/autocomplete.js +68 -66
- package/dist/badge/badge.js +188 -197
- package/dist/badge/css/badge.css +1 -0
- package/dist/badge/css/badge.css.map +1 -1
- package/dist/breadcrumbs.js +275 -284
- package/dist/btngrouper.js +5 -5
- package/dist/bulkActionPopup.js +490 -495
- package/dist/button.js +283 -291
- package/dist/cascadingComboBox.js +249 -258
- package/dist/ckeditor/ckConfigurator.js +26 -19
- package/dist/ckeditor/dtdHandler.js +11 -9
- package/dist/class/selector.js +441 -450
- package/dist/component/resizable.js +1 -1
- package/dist/component/windowed.js +285 -294
- package/dist/component.js +419 -428
- package/dist/contextualPopup.js +417 -426
- package/dist/dashboard.js +300 -309
- package/dist/datalist.js +753 -762
- package/dist/datatable/filterStrategy/multiple.js +1 -1
- package/dist/datatable/filterStrategy/single.js +1 -1
- package/dist/datatable.js +1527 -1550
- package/dist/dateRange/dateRange.js +393 -402
- package/dist/datetime/picker.js +665 -672
- package/dist/deleter.js +368 -377
- package/dist/destination/selector.js +286 -295
- package/dist/dialog/alert.js +3 -3
- package/dist/dialog/confirm.js +1 -1
- package/dist/dialog/confirmDelete.js +216 -225
- package/dist/dialog.js +650 -654
- package/dist/disabler.js +8 -8
- package/dist/documentViewer/providers/pdfViewer/fallback/viewer.js +166 -175
- package/dist/documentViewer/providers/pdfViewer/pdfjs/findBar.js +518 -527
- package/dist/documentViewer/providers/pdfViewer/pdfjs/pageView.js +380 -389
- package/dist/documentViewer/providers/pdfViewer/pdfjs/searchEngine.js +539 -548
- package/dist/documentViewer/providers/pdfViewer/pdfjs/viewer.js +369 -378
- package/dist/documentViewer/providers/pdfViewer.js +184 -193
- package/dist/documentViewer.js +292 -301
- package/dist/dropdown.js +383 -392
- package/dist/durationer.js +5 -5
- package/dist/dynamicComponent.js +597 -598
- package/dist/feedback.js +356 -362
- package/dist/figure/FigureStateActive.js +117 -108
- package/dist/filesender.js +2 -2
- package/dist/filter.js +230 -239
- package/dist/form/dropdownForm.js +355 -357
- package/dist/form/form.js +919 -690
- package/dist/form/simpleForm.js +1 -1
- package/dist/form/validator/renderer.js +233 -235
- package/dist/form/validator/validator.js +257 -189
- package/dist/form/widget/definitions.js +1 -1
- package/dist/form/widget/providers/checkBox.js +254 -259
- package/dist/form/widget/providers/comboBox.js +187 -192
- package/dist/form/widget/providers/default.js +8 -9
- package/dist/form/widget/providers/hidden.js +170 -179
- package/dist/form/widget/providers/hiddenBox.js +262 -267
- package/dist/form/widget/providers/radioBox.js +216 -225
- package/dist/form/widget/providers/textArea.js +187 -196
- package/dist/form/widget/providers/textBox.js +2 -3
- package/dist/form/widget/widget.js +473 -475
- package/dist/formValidator/formValidator.js +1 -1
- package/dist/formValidator/highlighters/message.js +1 -1
- package/dist/generis/form/form.js +314 -323
- package/dist/generis/validator/validator.js +209 -218
- package/dist/generis/widget/checkBox/checkBox.js +218 -227
- package/dist/generis/widget/comboBox/comboBox.js +179 -188
- package/dist/generis/widget/hiddenBox/hiddenBox.js +220 -229
- package/dist/generis/widget/textBox/textBox.js +169 -178
- package/dist/generis/widget/widget.js +246 -255
- package/dist/groupedComboBox.js +222 -231
- package/dist/groupvalidator.js +2 -2
- package/dist/highlighter.js +967 -958
- package/dist/image/ImgStateActive/helper.js +7 -5
- package/dist/image/ImgStateActive/initHelper.js +49 -43
- package/dist/image/ImgStateActive/initMediaEditor.js +24 -20
- package/dist/image/ImgStateActive/mediaSizer.js +14 -12
- package/dist/image/ImgStateActive.js +72 -70
- package/dist/incrementer.js +6 -6
- package/dist/inplacer.js +6 -6
- package/dist/itemButtonList/css/item-button-list.css +1 -0
- package/dist/itemButtonList/css/item-button-list.css.map +1 -1
- package/dist/itemButtonList.js +439 -435
- package/dist/keyNavigation/navigableDomElement.js +51 -38
- package/dist/keyNavigation/navigator.js +85 -70
- package/dist/listbox.js +460 -469
- package/dist/liststyler.js +8 -8
- package/dist/loadingButton/loadingButton.js +209 -218
- package/dist/lock.js +476 -485
- package/dist/login/login.js +475 -484
- package/dist/maths/calculator/basicCalculator.js +235 -244
- package/dist/maths/calculator/calculatorComponent.js +3 -3
- package/dist/maths/calculator/core/board.js +772 -781
- package/dist/maths/calculator/core/expression.js +476 -485
- package/dist/maths/calculator/core/labels.js +228 -237
- package/dist/maths/calculator/core/tokenizer.js +1 -1
- package/dist/maths/calculator/core/tokens.js +163 -170
- package/dist/maths/calculator/plugins/keyboard/templateKeyboard/templateKeyboard.js +244 -253
- package/dist/maths/calculator/plugins/screen/simpleScreen/simpleScreen.js +279 -288
- package/dist/maths/calculator/scientificCalculator.js +327 -336
- package/dist/mediaEditor/mediaEditorComponent.js +238 -245
- package/dist/mediaEditor/plugins/mediaAlignment/helper.js +7 -7
- package/dist/mediaEditor/plugins/mediaAlignment/mediaAlignmentComponent.js +229 -235
- package/dist/mediaEditor/plugins/mediaDimension/mediaDimensionComponent.js +580 -589
- package/dist/mediaplayer/players/html5.js +666 -675
- package/dist/mediaplayer/players/youtube.js +419 -424
- package/dist/mediaplayer/support.js +11 -10
- package/dist/mediaplayer/utils/reminder.js +14 -13
- package/dist/mediaplayer/utils/timeObserver.js +10 -11
- package/dist/mediaplayer/youtubeManager.js +164 -145
- package/dist/mediaplayer.js +1565 -1520
- package/dist/mediasizer.js +669 -678
- package/dist/modal.js +10 -17
- package/dist/pageSizeSelector.js +219 -228
- package/dist/pagination/providers/pages.js +280 -289
- package/dist/pagination/providers/simple.js +192 -201
- package/dist/previewer.js +30 -30
- package/dist/progressbar.js +4 -4
- package/dist/report.js +347 -356
- package/dist/resource/filters.js +271 -280
- package/dist/resource/list.js +1264 -1273
- package/dist/resource/selector.js +865 -874
- package/dist/resource/tree.js +1483 -1492
- package/dist/resourcemgr/fileBrowser.js +564 -569
- package/dist/resourcemgr/filePreview.js +16 -16
- package/dist/resourcemgr/fileSelector.js +515 -524
- package/dist/resourcemgr/util/updatePermissions.js +2 -2
- package/dist/resourcemgr.js +306 -315
- package/dist/searchModal/advancedSearch.js +796 -767
- package/dist/searchModal.js +114 -91
- package/dist/switch/switch.js +298 -307
- package/dist/tabs.js +598 -575
- package/dist/taskQueue/status.js +312 -321
- package/dist/taskQueue/table.js +375 -384
- package/dist/taskQueue/taskQueueModel.js +488 -472
- package/dist/taskQueueButton/taskable.js +264 -273
- package/dist/taskQueueButton/treeButton.js +189 -198
- package/dist/themeLoader.js +24 -23
- package/dist/themes.js +1 -1
- package/dist/toggler.js +3 -3
- package/dist/tooltip.js +295 -304
- package/dist/transformer.js +2 -2
- package/dist/tristateCheckboxGroup.js +311 -320
- package/dist/uploader.js +687 -696
- package/dist/validator/Report.js +1 -1
- package/dist/validator/Validator.js +3 -3
- package/dist/validator/validators.js +9 -9
- package/dist/validator.js +240 -230
- package/dist/waitForMedia.js +1 -1
- package/package.json +3 -3
- package/src/animable/absorbable/css/absorb.css +1 -0
- package/src/animable/absorbable/css/absorb.css.map +1 -1
- package/src/autocomplete/css/autocomplete.css +1 -0
- package/src/autocomplete/css/autocomplete.css.map +1 -1
- package/src/badge/css/badge.css +1 -0
- package/src/badge/css/badge.css.map +1 -1
- package/src/ckeditor/ckConfigurator.js +4 -0
- package/src/itemButtonList/css/item-button-list.css +1 -0
- package/src/itemButtonList/css/item-button-list.css.map +1 -1
- package/src/.DS_Store +0 -0
- package/src/css/basic.css +0 -7826
- package/src/css/basic.css.map +0 -1
- package/src/css/ckeditor/skins/tao/css/dialog.css +0 -950
- package/src/css/ckeditor/skins/tao/css/dialog.css.map +0 -1
- package/src/css/ckeditor/skins/tao/css/editor.css +0 -1850
- package/src/css/ckeditor/skins/tao/css/editor.css.map +0 -1
- package/src/scss/.DS_Store +0 -0
- package/src/scss/basic.scss +0 -16
- package/src/scss/ckeditor/skins/tao/scss/dialog.scss +0 -763
- package/src/scss/ckeditor/skins/tao/scss/editor.scss +0 -111
- package/src/scss/ckeditor/skins/tao/scss/inc/_ck-icons.scss +0 -59
- package/src/scss/ckeditor/skins/tao/scss/inc/_colorpanel.scss +0 -118
- package/src/scss/ckeditor/skins/tao/scss/inc/_elementspath.scss +0 -69
- package/src/scss/ckeditor/skins/tao/scss/inc/_mainui.scss +0 -194
- package/src/scss/ckeditor/skins/tao/scss/inc/_menu.scss +0 -181
- package/src/scss/ckeditor/skins/tao/scss/inc/_panel.scss +0 -200
- package/src/scss/ckeditor/skins/tao/scss/inc/_presets.scss +0 -32
- package/src/scss/ckeditor/skins/tao/scss/inc/_reset.scss +0 -101
- package/src/scss/ckeditor/skins/tao/scss/inc/_richcombo.scss +0 -213
- package/src/scss/ckeditor/skins/tao/scss/inc/_tao.scss +0 -59
- package/src/scss/ckeditor/skins/tao/scss/inc/_toolbar.scss +0 -301
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff.b64 +0 -1
- package/src/scss/font/tao/tao.eot +0 -0
- package/src/scss/font/tao/tao.svg +0 -235
- package/src/scss/font/tao/tao.ttf +0 -0
- package/src/scss/font/tao/tao.woff +0 -0
- package/src/scss/inc/_base.scss +0 -496
- package/src/scss/inc/_bootstrap.scss +0 -6
- package/src/scss/inc/_buttons.scss +0 -114
- package/src/scss/inc/_colors.scss +0 -88
- package/src/scss/inc/_feedback.scss +0 -150
- package/src/scss/inc/_flex-grid.scss +0 -15
- package/src/scss/inc/_fonts.scss +0 -4
- package/src/scss/inc/_forms.scss +0 -827
- package/src/scss/inc/_functions.scss +0 -283
- package/src/scss/inc/_grid.scss +0 -66
- package/src/scss/inc/_jquery.nouislider.scss +0 -254
- package/src/scss/inc/_normalize.scss +0 -528
- package/src/scss/inc/_report.scss +0 -68
- package/src/scss/inc/_secondary-properties.scss +0 -89
- package/src/scss/inc/_select2.scss +0 -634
- package/src/scss/inc/_toolbars.scss +0 -155
- package/src/scss/inc/_tooltip.scss +0 -312
- package/src/scss/inc/_variables.scss +0 -21
- package/src/scss/inc/base/_highlight.scss +0 -5
- package/src/scss/inc/base/_list-style.scss +0 -59
- package/src/scss/inc/base/_svg.scss +0 -3
- package/src/scss/inc/base/_table.scss +0 -63
- package/src/scss/inc/fonts/_source-sans-pro.scss +0 -29
- package/src/scss/inc/fonts/_tao-icon-classes.scss +0 -226
- package/src/scss/inc/fonts/_tao-icon-def.scss +0 -12
- package/src/scss/inc/fonts/_tao-icon-vars.scss +0 -240
|
Binary file
|
|
Binary file
|
package/src/scss/inc/_base.scss
DELETED
|
@@ -1,496 +0,0 @@
|
|
|
1
|
-
// this combines the most common features from normalize, h5bp main and tao base
|
|
2
|
-
|
|
3
|
-
//these vars enables you to include this base in a scoped env.
|
|
4
|
-
$mainContainer : html !default;
|
|
5
|
-
|
|
6
|
-
// Those styles can't be scoped because it's the base to use REM
|
|
7
|
-
html {
|
|
8
|
-
-webkit-text-size-adjust: 100%;
|
|
9
|
-
-ms-text-size-adjust: 100%;
|
|
10
|
-
font-size: 62.5%;
|
|
11
|
-
line-height: 1.4;
|
|
12
|
-
-moz-box-sizing: border-box;
|
|
13
|
-
-webkit-box-sizing: border-box;
|
|
14
|
-
box-sizing: border-box;
|
|
15
|
-
-webkit-background-size: cover;
|
|
16
|
-
-moz-background-size: cover;
|
|
17
|
-
-o-background-size: cover;
|
|
18
|
-
background-size: cover;
|
|
19
|
-
&.fullscreen {
|
|
20
|
-
width: 100%;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
body {
|
|
25
|
-
-moz-box-sizing: border-box;
|
|
26
|
-
-webkit-box-sizing: border-box;
|
|
27
|
-
box-sizing: border-box;
|
|
28
|
-
font-size: 14px;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// cannot be scoped
|
|
32
|
-
::-webkit-scrollbar-corner { background-color: ThreeDHighlight;}
|
|
33
|
-
|
|
34
|
-
#{$mainContainer} {
|
|
35
|
-
|
|
36
|
-
*, *:before, *:after {
|
|
37
|
-
-moz-box-sizing: border-box;
|
|
38
|
-
-webkit-box-sizing: border-box;
|
|
39
|
-
box-sizing: border-box;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&, body{
|
|
43
|
-
color: $textColor;
|
|
44
|
-
font-family: $regularFont;
|
|
45
|
-
font-weight: normal;
|
|
46
|
-
margin: 0;
|
|
47
|
-
padding: 0;
|
|
48
|
-
position: relative;
|
|
49
|
-
height: 100%;
|
|
50
|
-
z-index: 0;
|
|
51
|
-
line-height: 1.4;
|
|
52
|
-
background: white;
|
|
53
|
-
border-width: 1px;
|
|
54
|
-
@if($mainContainer != html){
|
|
55
|
-
@include font-size(14);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
address, article, aside, audio, blockquote, dd, div, dl, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header,
|
|
60
|
-
hr, noscript, ol, output, p, pre, section, summary, ul, main {
|
|
61
|
-
margin-top: 0;
|
|
62
|
-
padding-top: 0;
|
|
63
|
-
padding-bottom: 0;
|
|
64
|
-
white-space: normal;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
h1 {
|
|
68
|
-
font-size: 2em;
|
|
69
|
-
margin: 0.67em 0;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
h2 {
|
|
73
|
-
font-size: 1.5em;
|
|
74
|
-
margin: 0.83em 0;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
h3 {
|
|
78
|
-
font-size: 1.17em;
|
|
79
|
-
margin: 1em 0;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
h4 {
|
|
83
|
-
font-size: 1em;
|
|
84
|
-
margin: 1.33em 0;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
h5 {
|
|
88
|
-
font-size: 0.83em;
|
|
89
|
-
margin: 1.67em 0;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
h6 {
|
|
93
|
-
font-size: 0.67em;
|
|
94
|
-
margin: 2.33em 0;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
blockquote {
|
|
98
|
-
margin: 1em 40px;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
blockquote, dd, dl, fieldset, figure, h1, h2, h3, h4, h5, h6,
|
|
102
|
-
hr, ol, p, pre, ul {
|
|
103
|
-
display: block;
|
|
104
|
-
margin-bottom: 10px;
|
|
105
|
-
white-space: normal;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
h1, h2, h3, h4, h5, h6 {
|
|
109
|
-
font-weight: normal;
|
|
110
|
-
font-style: normal;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
iframe {
|
|
114
|
-
border: none;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
audio,
|
|
118
|
-
canvas,
|
|
119
|
-
video,
|
|
120
|
-
svg {
|
|
121
|
-
display: inline-block;
|
|
122
|
-
vertical-align: middle;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// the above rule breaks SVG on MathJax and thus requires a reset
|
|
126
|
-
.MathJax svg {
|
|
127
|
-
display: inline;
|
|
128
|
-
vertical-align: baseline;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
a {
|
|
132
|
-
cursor: pointer;
|
|
133
|
-
background: transparent;
|
|
134
|
-
text-decoration: none;
|
|
135
|
-
outline: 0;
|
|
136
|
-
color: $uiClickableHoverBg;
|
|
137
|
-
&:focus {
|
|
138
|
-
outline: thin dotted;
|
|
139
|
-
}
|
|
140
|
-
&:hover {
|
|
141
|
-
text-decoration: underline;
|
|
142
|
-
color: $info;
|
|
143
|
-
&:before, &:after {
|
|
144
|
-
text-decoration: none !important;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
&.block {
|
|
148
|
-
color: $textColor;
|
|
149
|
-
text-decoration: none;
|
|
150
|
-
display: block;
|
|
151
|
-
}
|
|
152
|
-
&[rel="external"] span.icon-external {
|
|
153
|
-
&:before {
|
|
154
|
-
@include font-size(11);
|
|
155
|
-
padding: 0 0 0 4px;
|
|
156
|
-
position: relative;
|
|
157
|
-
top: 1px;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
b, .b, strong, .strong {
|
|
163
|
-
font-weight: bold;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
i, .i, em, .em, dfn {
|
|
167
|
-
font-style: italic;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
code, pre, kdb, samp {
|
|
171
|
-
font-family: $monospaceFont;
|
|
172
|
-
@include font-size(14);
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
pre {
|
|
176
|
-
white-space: pre;
|
|
177
|
-
white-space: pre-wrap;
|
|
178
|
-
word-wrap: break-word;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
code {
|
|
182
|
-
background: whiten($lightBlueGrey, .5);
|
|
183
|
-
padding: 2px 6px;
|
|
184
|
-
display: inline-block;
|
|
185
|
-
margin: 0 3px;
|
|
186
|
-
@include border-radius();
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
hr {
|
|
190
|
-
display: block;
|
|
191
|
-
height: 1px;
|
|
192
|
-
border: 0;
|
|
193
|
-
border-top: 1px solid #ccc;
|
|
194
|
-
margin: 1em 0;
|
|
195
|
-
padding: 0;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
q {
|
|
199
|
-
quotes: "\201C" "\201D" "\2018" "\2019";
|
|
200
|
-
&:before,
|
|
201
|
-
&:after {
|
|
202
|
-
content: '';
|
|
203
|
-
content: none;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
small {
|
|
208
|
-
@include font-size(11);
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
sub,
|
|
212
|
-
sup {
|
|
213
|
-
font-size: .75em;
|
|
214
|
-
line-height: 0;
|
|
215
|
-
position: relative;
|
|
216
|
-
vertical-align: baseline;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
sup {
|
|
220
|
-
top: -0.5em;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
sub {
|
|
224
|
-
bottom: -0.25em;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
img {
|
|
228
|
-
border: 0;
|
|
229
|
-
max-width: 100%;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
svg:not(:root) {
|
|
233
|
-
overflow: hidden;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
fieldset {
|
|
238
|
-
border: 0;
|
|
239
|
-
margin: 0;
|
|
240
|
-
padding: 0;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
legend {
|
|
244
|
-
border: 0;
|
|
245
|
-
padding: 0;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
textarea {
|
|
249
|
-
overflow: auto;
|
|
250
|
-
vertical-align: top;
|
|
251
|
-
resize: vertical;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
label, button {
|
|
255
|
-
cursor: pointer;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
button {
|
|
259
|
-
vertical-align: middle;
|
|
260
|
-
outline: 0;
|
|
261
|
-
overflow: visible;
|
|
262
|
-
border: none;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
button, input {
|
|
266
|
-
&::-moz-focus-inner {
|
|
267
|
-
border: 0;
|
|
268
|
-
padding: 0;
|
|
269
|
-
}
|
|
270
|
-
// avoid usage of the IE clear button
|
|
271
|
-
&::-ms-clear {
|
|
272
|
-
display: none;
|
|
273
|
-
}
|
|
274
|
-
&::-ms-reveal {
|
|
275
|
-
display: none;
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
button,
|
|
280
|
-
input,
|
|
281
|
-
select,
|
|
282
|
-
textarea {
|
|
283
|
-
font-family: $regularFont;
|
|
284
|
-
font-weight: normal;
|
|
285
|
-
line-height: normal;
|
|
286
|
-
text-transform: none;
|
|
287
|
-
vertical-align: baseline;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
button,
|
|
291
|
-
html input[type="button"],
|
|
292
|
-
input[type="reset"],
|
|
293
|
-
input[type="submit"] {
|
|
294
|
-
-webkit-appearance: button;
|
|
295
|
-
cursor: pointer;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
input {
|
|
299
|
-
@include simple-border();
|
|
300
|
-
@include border-radius(1);
|
|
301
|
-
|
|
302
|
-
&[type="search"] {
|
|
303
|
-
-webkit-appearance: textfield;
|
|
304
|
-
-moz-box-sizing: content-box;
|
|
305
|
-
-webkit-box-sizing: content-box;
|
|
306
|
-
box-sizing: content-box;
|
|
307
|
-
&::-webkit-search-cancel-button,
|
|
308
|
-
&::-webkit-search-decoration {
|
|
309
|
-
-webkit-appearance: none;
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
&[type="checkbox"],
|
|
314
|
-
&[type="radio"] {
|
|
315
|
-
box-sizing: border-box;
|
|
316
|
-
padding: 0;
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
select {
|
|
321
|
-
max-width: 100%;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
audio:not([controls]),
|
|
325
|
-
[hidden], template,
|
|
326
|
-
.hidden, .deleted,
|
|
327
|
-
.js, .js-hide {
|
|
328
|
-
display: none !important;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.visuallyhidden {
|
|
332
|
-
border: 0;
|
|
333
|
-
clip: rect(0 0 0 0);
|
|
334
|
-
height: 1px;
|
|
335
|
-
margin: -1px;
|
|
336
|
-
overflow: hidden;
|
|
337
|
-
padding: 0;
|
|
338
|
-
position: absolute;
|
|
339
|
-
width: 1px;
|
|
340
|
-
&.focusable {
|
|
341
|
-
&:active,
|
|
342
|
-
&:focus {
|
|
343
|
-
clip: auto;
|
|
344
|
-
height: auto;
|
|
345
|
-
margin: 0;
|
|
346
|
-
overflow: visible;
|
|
347
|
-
position: static;
|
|
348
|
-
width: auto;
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.invisible {
|
|
354
|
-
visibility: hidden;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.viewport-hidden {
|
|
358
|
-
position: absolute;
|
|
359
|
-
left: -10000px;
|
|
360
|
-
top: -10000px;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.clearfix {
|
|
364
|
-
&:before, &:after {
|
|
365
|
-
content: " ";
|
|
366
|
-
display: table;
|
|
367
|
-
}
|
|
368
|
-
&:after {
|
|
369
|
-
clear: both;
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
.clear {
|
|
374
|
-
display: block;
|
|
375
|
-
clear: both;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
.lft,
|
|
380
|
-
.wrap-left {
|
|
381
|
-
display: inline;
|
|
382
|
-
float: left;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
.rgt,
|
|
386
|
-
.wrap-right {
|
|
387
|
-
display: inline;
|
|
388
|
-
float: right;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
.wrap-left {
|
|
392
|
-
margin: 20px 20px 20px 0;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
.wrap-right {
|
|
396
|
-
margin: 20px 0 20px 20px;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.txt-ctr {
|
|
400
|
-
text-align: center;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
.txt-lft {
|
|
404
|
-
text-align: left;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
.txt-rgt {
|
|
408
|
-
text-align: right;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
.txt-jty {
|
|
412
|
-
text-align: justify;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
// added to make _u_ in ck QTI compatible
|
|
416
|
-
.txt-underline {
|
|
417
|
-
text-decoration: underline;
|
|
418
|
-
font-size : inherit;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
.txt-highlight {
|
|
422
|
-
padding: 0 5px;
|
|
423
|
-
background: #FF6416;
|
|
424
|
-
color: white;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
::-moz-selection {
|
|
428
|
-
background: #b3d4fc;
|
|
429
|
-
text-shadow: none;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
::selection {
|
|
433
|
-
background: #b3d4fc;
|
|
434
|
-
text-shadow: none;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.placeholder {
|
|
438
|
-
color: #777 !important;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
::-webkit-input-placeholder {
|
|
442
|
-
color: #777 !important;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
:-moz-placeholder {
|
|
446
|
-
color: #777 !important;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
::-moz-placeholder {
|
|
450
|
-
color: #777 !important;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.truncate {
|
|
454
|
-
white-space: nowrap;
|
|
455
|
-
overflow: hidden;
|
|
456
|
-
text-overflow: ellipsis;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.disabled, *:disabled {
|
|
460
|
-
cursor: default;
|
|
461
|
-
opacity: .7;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
.overlay, .ui-widget-overlay {
|
|
465
|
-
background: white(.9);
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
.ui-widget {
|
|
469
|
-
font-family: $regularFont;
|
|
470
|
-
font-size: 1.4rem !important;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
.ui-widget .ui-widget {
|
|
474
|
-
font-size: 1.4rem !important;
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
|
|
478
|
-
font-family: $regularFont;
|
|
479
|
-
font-size: 1.4rem !important;
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
// everything on list styles and counters
|
|
485
|
-
@import 'base/list-style';
|
|
486
|
-
|
|
487
|
-
// everything tables
|
|
488
|
-
@import 'base/table';
|
|
489
|
-
|
|
490
|
-
// everything svg
|
|
491
|
-
@import 'base/svg';
|
|
492
|
-
|
|
493
|
-
// everything user highlight
|
|
494
|
-
@import 'base/highlight';
|
|
495
|
-
|
|
496
|
-
}
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
@mixin generic-btn-primary($color, $background) {
|
|
2
|
-
color: $color;
|
|
3
|
-
background-color: whiten($background, .1);
|
|
4
|
-
text-shadow: 1px 1px 0 blacken($background, .2);
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
@mixin generic-btn-secondary($color, $background) {
|
|
8
|
-
color: whiten($color, .1);
|
|
9
|
-
border: 1px solid whiten($color, .1);
|
|
10
|
-
background-color: $background;
|
|
11
|
-
text-shadow: none;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
%generic-btn-code {
|
|
15
|
-
@include border-radius(3);
|
|
16
|
-
font-size: 14px !important;
|
|
17
|
-
font-size: 1.4rem !important;
|
|
18
|
-
cursor: pointer;
|
|
19
|
-
text-decoration: none !important;
|
|
20
|
-
vertical-align: middle;
|
|
21
|
-
outline: 0;
|
|
22
|
-
overflow: visible;
|
|
23
|
-
border: none;
|
|
24
|
-
display: inline-block;
|
|
25
|
-
line-height: 2.5;
|
|
26
|
-
padding: 0 15px;
|
|
27
|
-
font-weight: normal;
|
|
28
|
-
font-style: normal;
|
|
29
|
-
text-align: center;
|
|
30
|
-
height: 35px;
|
|
31
|
-
@include generic-btn-primary(white(), $uiClickableActiveBg);
|
|
32
|
-
&.btn-secondary {
|
|
33
|
-
@include generic-btn-secondary($uiClickableActiveBg, $uiGeneralContentBg);
|
|
34
|
-
line-height: 2.3;
|
|
35
|
-
}
|
|
36
|
-
&.small {
|
|
37
|
-
line-height: 1.8;
|
|
38
|
-
height: 25px;
|
|
39
|
-
&.btn-secondary {
|
|
40
|
-
line-height: 1.5;
|
|
41
|
-
}
|
|
42
|
-
[class^="icon-"], [class*=" icon-"] {
|
|
43
|
-
@include font-size(13);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
[class^="icon-"], [class*=" icon-"] {
|
|
47
|
-
font: tao !important;
|
|
48
|
-
font-family:tao;
|
|
49
|
-
@include font-size(14);
|
|
50
|
-
line-height: 1;
|
|
51
|
-
padding: 0 9px 0 0;
|
|
52
|
-
position: relative;
|
|
53
|
-
top: 1px;
|
|
54
|
-
left: -1px;
|
|
55
|
-
text-shadow: 0 1px 0 black(.1);
|
|
56
|
-
&.r {
|
|
57
|
-
padding: 0 0 0 9px;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
&:hover {
|
|
61
|
-
opacity: .85;
|
|
62
|
-
}
|
|
63
|
-
&.btn-info {
|
|
64
|
-
@include generic-btn-primary(white(), $info);
|
|
65
|
-
&.btn-secondary {
|
|
66
|
-
@include generic-btn-secondary($info, $uiGeneralContentBg);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
&.btn-error {
|
|
70
|
-
@include generic-btn-primary(white(), $error);
|
|
71
|
-
&.btn-secondary {
|
|
72
|
-
@include generic-btn-secondary($error, $uiGeneralContentBg);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
&.btn-success {
|
|
77
|
-
@include generic-btn-primary(white(), $success);
|
|
78
|
-
&.btn-secondary {
|
|
79
|
-
@include generic-btn-secondary($success, $uiGeneralContentBg);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
&.btn-warning {
|
|
84
|
-
@include generic-btn-primary(white(), $warning);
|
|
85
|
-
&.btn-secondary {
|
|
86
|
-
@include generic-btn-secondary($warning, $uiGeneralContentBg);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
// this construction was needed to avoid problems with extending this code elsewhere
|
|
92
|
-
[class^="btn-"], [class*=" btn-"], .btn-default,
|
|
93
|
-
button, input[type="submit"], input[type="reset"] {
|
|
94
|
-
@extend %generic-btn-code;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
/* todo move to main ? */
|
|
98
|
-
.disabled, button[disabled] {
|
|
99
|
-
// !important is required here to overwrite any other inherited rule no matter the specificity,
|
|
100
|
-
// as the disabled style must be consistent all across the stylesheet
|
|
101
|
-
background-color: whiten($websiteBorder, .3) !important;
|
|
102
|
-
text-shadow: 1px 1px 0 white(.8) !important;
|
|
103
|
-
cursor: not-allowed !important;
|
|
104
|
-
opacity: .55 !important;
|
|
105
|
-
color: #000 !important;
|
|
106
|
-
border: none !important;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// jquery ui
|
|
110
|
-
.ui-button {
|
|
111
|
-
[class^="icon-"], [class*=" icon-"] {
|
|
112
|
-
font-family: tao !important;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
// buttons and alerts
|
|
2
|
-
$success: rgb(14, 145, 75);
|
|
3
|
-
$info: rgb(14, 93, 145);
|
|
4
|
-
$warning: rgb(216, 174, 91);
|
|
5
|
-
$danger: rgb(201, 96, 67);
|
|
6
|
-
$error: rgb(186, 18, 43);
|
|
7
|
-
$activeInteraction: rgb(195, 90, 19);
|
|
8
|
-
|
|
9
|
-
// corporate identity
|
|
10
|
-
$logoRed: rgb(186, 18, 43);
|
|
11
|
-
$grey: rgb(173, 161, 148);
|
|
12
|
-
$darkBlueGrey: rgb(164, 187, 197);
|
|
13
|
-
$mediumBlueGrey: rgb(193, 212, 220);
|
|
14
|
-
$lightBlueGrey: rgb(228, 236, 239);
|
|
15
|
-
$brownRedGrey: rgb(154, 137, 123);
|
|
16
|
-
$darkBrown: rgb(111, 99, 89);
|
|
17
|
-
$websiteBorder: rgb(141, 148, 158);
|
|
18
|
-
|
|
19
|
-
// ui elements, these should only variations of the above
|
|
20
|
-
// naming convention: jQueryUi theme roller -> camelCase
|
|
21
|
-
|
|
22
|
-
$textColor: #222;
|
|
23
|
-
$textHighlight: white;
|
|
24
|
-
|
|
25
|
-
$uiGeneralContentBg: white();
|
|
26
|
-
$uiGeneralContentBorder: #ddd;
|
|
27
|
-
|
|
28
|
-
$uiHeaderBg: #d4d5d7;
|
|
29
|
-
|
|
30
|
-
$uiClickableDefaultBg: #f3f1ef;
|
|
31
|
-
$uiClickableHoverBg: whiten($info, 0.2);
|
|
32
|
-
//$uiClickableActiveBg: $uiHeaderBg;
|
|
33
|
-
$uiClickableActiveBg: whiten($websiteBorder, 0.2);
|
|
34
|
-
//$uiClickableActiveBg: #aaa;
|
|
35
|
-
|
|
36
|
-
$uiSelectableSelectedBg: whiten($info, 0.2);
|
|
37
|
-
$uiSelectableSelectedHoverBg: whiten($info, 0.1);
|
|
38
|
-
$uiSelectableHoverBg: whiten($info, 0.9);
|
|
39
|
-
|
|
40
|
-
$uiOverlay: $lightBlueGrey;
|
|
41
|
-
|
|
42
|
-
// new layout. Implemented now only for review panel
|
|
43
|
-
$uiReviewPanelBg: #f2f2f2;
|
|
44
|
-
$uiReviewPanelTextDisabled: hsl(0, 0%, 45%);
|
|
45
|
-
$uiReviewPanelTextDefault: hsl(0, 0%, 12%);
|
|
46
|
-
$uiReviewPanelBgDefault: $uiGeneralContentBg;
|
|
47
|
-
$uiReviewPanelPrimaryHighlight: hsl(208, 100%, 32%);
|
|
48
|
-
$uiReviewPanelBgInverted: $uiReviewPanelTextDefault;
|
|
49
|
-
$uiReviewPanelTextInverted: $uiGeneralContentBg;
|
|
50
|
-
|
|
51
|
-
// sidebars etc.
|
|
52
|
-
$canvas: mix(#fff, $grey, 85%);
|
|
53
|
-
|
|
54
|
-
// colors taken from feedback.scss
|
|
55
|
-
$successBgColor: whiten($success, 0.8);
|
|
56
|
-
$successBorderColor: whiten($success, 0.1);
|
|
57
|
-
|
|
58
|
-
$infoBgColor: whiten($info, 0.8);
|
|
59
|
-
$infoBorderColor: whiten($info, 0.1);
|
|
60
|
-
|
|
61
|
-
$warningBgColor: whiten($warning, 0.8);
|
|
62
|
-
$warningBorderColor: whiten($warning, 0.1);
|
|
63
|
-
|
|
64
|
-
$dangerBgColor: whiten($danger, 0.8);
|
|
65
|
-
$dangerBorderColor: whiten($danger, 0.1);
|
|
66
|
-
|
|
67
|
-
$errorBgColor: whiten($error, 0.8);
|
|
68
|
-
$errorBorderColor: whiten($error, 0.1);
|
|
69
|
-
|
|
70
|
-
$darkBar: rgb(51, 51, 51);
|
|
71
|
-
$darkBarTxt: rgb(230, 230, 230);
|
|
72
|
-
$darkBarIcon: rgb(220, 220, 220);
|
|
73
|
-
|
|
74
|
-
$actionLinkColor: #276d9b;
|
|
75
|
-
$actionLinkHoverColor: #4f83a7;
|
|
76
|
-
|
|
77
|
-
$colorWheel-01: #c3ba13;
|
|
78
|
-
$colorWheel-02: #84a610;
|
|
79
|
-
$colorWheel-03: #2b8e0e;
|
|
80
|
-
$colorWheel-04: #0f9787;
|
|
81
|
-
$colorWheel-05: #0e5d91;
|
|
82
|
-
$colorWheel-06: #0d2689;
|
|
83
|
-
$colorWheel-07: #400d83;
|
|
84
|
-
$colorWheel-08: #960e7d;
|
|
85
|
-
$colorWheel-09: #ba122b;
|
|
86
|
-
$colorWheel-10: #c34713;
|
|
87
|
-
$colorWheel-11: #c36f13;
|
|
88
|
-
$colorWheel-12: #c39413;
|