nodeskini 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/README.md +31 -0
- package/client/archive/bundle.js +11528 -0
- package/client/archive/golem.html +60 -0
- package/client/archive/golemClient.js +595 -0
- package/client/archive/golembundle.js +11634 -0
- package/client/archive/sequencer.html +43 -0
- package/client/archive/sequenceurClient.js +815 -0
- package/client/archive/stylegolem.css +158 -0
- package/client/archive/stylesequenceur.css +204 -0
- package/client/clientListe/Sortable-master/.circleci/config.yml +33 -0
- package/client/clientListe/Sortable-master/.editorconfig +15 -0
- package/client/clientListe/Sortable-master/.github/ISSUE_TEMPLATE/bug-report.md +73 -0
- package/client/clientListe/Sortable-master/.github/ISSUE_TEMPLATE/custom-template.md +48 -0
- package/client/clientListe/Sortable-master/.github/ISSUE_TEMPLATE/feature-request.md +41 -0
- package/client/clientListe/Sortable-master/.jshintrc +25 -0
- package/client/clientListe/Sortable-master/.testcaferc.json +7 -0
- package/client/clientListe/Sortable-master/CONTRIBUTING.md +26 -0
- package/client/clientListe/Sortable-master/LICENSE +21 -0
- package/client/clientListe/Sortable-master/README.md +813 -0
- package/client/clientListe/Sortable-master/Sortable.js +3709 -0
- package/client/clientListe/Sortable-master/Sortable.min.js +2 -0
- package/client/clientListe/Sortable-master/Sortable.min.old.js +2 -0
- package/client/clientListe/Sortable-master/Sortable.min.old.old.js +2 -0
- package/client/clientListe/Sortable-master/babel.config.js +27 -0
- package/client/clientListe/Sortable-master/bower.json +30 -0
- package/client/clientListe/Sortable-master/entry/entry-complete.js +8 -0
- package/client/clientListe/Sortable-master/entry/entry-core.js +19 -0
- package/client/clientListe/Sortable-master/entry/entry-defaults.js +19 -0
- package/client/clientListe/Sortable-master/index.html +460 -0
- package/client/clientListe/Sortable-master/modular/sortable.complete.esm.js +3701 -0
- package/client/clientListe/Sortable-master/modular/sortable.core.esm.js +3698 -0
- package/client/clientListe/Sortable-master/modular/sortable.esm.js +3699 -0
- package/client/clientListe/Sortable-master/package-lock.json +5704 -0
- package/client/clientListe/Sortable-master/package.json +56 -0
- package/client/clientListe/Sortable-master/plugins/AutoScroll/AutoScroll.js +270 -0
- package/client/clientListe/Sortable-master/plugins/AutoScroll/README.md +80 -0
- package/client/clientListe/Sortable-master/plugins/AutoScroll/index.js +1 -0
- package/client/clientListe/Sortable-master/plugins/MultiDrag/MultiDrag.js +617 -0
- package/client/clientListe/Sortable-master/plugins/MultiDrag/README.md +96 -0
- package/client/clientListe/Sortable-master/plugins/MultiDrag/index.js +1 -0
- package/client/clientListe/Sortable-master/plugins/OnSpill/OnSpill.js +79 -0
- package/client/clientListe/Sortable-master/plugins/OnSpill/README.md +60 -0
- package/client/clientListe/Sortable-master/plugins/OnSpill/index.js +1 -0
- package/client/clientListe/Sortable-master/plugins/README.md +178 -0
- package/client/clientListe/Sortable-master/plugins/Swap/README.md +55 -0
- package/client/clientListe/Sortable-master/plugins/Swap/Swap.js +90 -0
- package/client/clientListe/Sortable-master/plugins/Swap/index.js +1 -0
- package/client/clientListe/Sortable-master/scripts/banner.js +8 -0
- package/client/clientListe/Sortable-master/scripts/build.js +17 -0
- package/client/clientListe/Sortable-master/scripts/esm-build.js +28 -0
- package/client/clientListe/Sortable-master/scripts/minify.js +11 -0
- package/client/clientListe/Sortable-master/scripts/test-compat.js +30 -0
- package/client/clientListe/Sortable-master/scripts/test.js +21 -0
- package/client/clientListe/Sortable-master/scripts/umd-build.js +15 -0
- package/client/clientListe/Sortable-master/src/Animation.js +175 -0
- package/client/clientListe/Sortable-master/src/BrowserInfo.js +12 -0
- package/client/clientListe/Sortable-master/src/EventDispatcher.js +57 -0
- package/client/clientListe/Sortable-master/src/PluginManager.js +87 -0
- package/client/clientListe/Sortable-master/src/Sortable.js +1971 -0
- package/client/clientListe/Sortable-master/src/utils.js +556 -0
- package/client/clientListe/Sortable-master/st/app.js +224 -0
- package/client/clientListe/Sortable-master/st/iframe/frame.html +32 -0
- package/client/clientListe/Sortable-master/st/iframe/index.html +49 -0
- package/client/clientListe/Sortable-master/st/logo.png +0 -0
- package/client/clientListe/Sortable-master/st/og-image.png +0 -0
- package/client/clientListe/Sortable-master/st/prettify/prettify.css +1 -0
- package/client/clientListe/Sortable-master/st/prettify/prettify.js +46 -0
- package/client/clientListe/Sortable-master/st/prettify/run_prettify.js +64 -0
- package/client/clientListe/Sortable-master/st/saucelabs.svg +1 -0
- package/client/clientListe/Sortable-master/st/theme.css +254 -0
- package/client/clientListe/Sortable-master/tests/Sortable.compat.test.js +39 -0
- package/client/clientListe/Sortable-master/tests/Sortable.test.js +386 -0
- package/client/clientListe/Sortable-master/tests/dual-list.html +34 -0
- package/client/clientListe/Sortable-master/tests/empty-list.html +30 -0
- package/client/clientListe/Sortable-master/tests/filter.html +27 -0
- package/client/clientListe/Sortable-master/tests/handles.html +27 -0
- package/client/clientListe/Sortable-master/tests/nested.html +67 -0
- package/client/clientListe/Sortable-master/tests/single-list.html +25 -0
- package/client/clientListe/Sortable-master/tests/style.css +18 -0
- package/client/clientListe/clientListe.html +148 -0
- package/client/clientListe/clientListe.js +1508 -0
- package/client/clientListe/clientListebundle.js +13164 -0
- package/client/clientListe/images/poubelle.png +0 -0
- package/client/clientListe/images/start.png +0 -0
- package/client/clientListe/images/stop.png +0 -0
- package/client/clientListe/images/submit.png +0 -0
- package/client/clientListe/sortable-theme-bootstrap.css +90 -0
- package/client/configurateur/configReact.js +273 -0
- package/client/configurateur/configReactbundle.js +295 -0
- package/client/configurateur/configurateur.css +95 -0
- package/client/configurateur/configurateur.html +48 -0
- package/client/configurateur/lib/jexcel.css +755 -0
- package/client/configurateur/lib/jexcel.js +14970 -0
- package/client/configurateur/lib/jsuites.css +2801 -0
- package/client/configurateur/lib/jsuites.js +11822 -0
- package/client/configurateur/lib/react-dom.production.min.js +239 -0
- package/client/configurateur/lib/react.production.min.js +32 -0
- package/client/configurateur/src/configReact.js +247 -0
- package/client/controleur/clientcontroleur.js +536 -0
- package/client/controleur/clientcontroleur.test.js +282 -0
- package/client/controleur/controleur.html +51 -0
- package/client/controleur/controleurbundle.js +565 -0
- package/client/controleur/stylecontroleur.css +236 -0
- package/client/controleurHH/controleurHH.html +71 -0
- package/client/controleurHH/controleurHH.js +252 -0
- package/client/controleurHH/styles/index.css +320 -0
- package/client/controleurHH/styles/material.css +11552 -0
- package/client/parametrage/paramReact.js +473 -0
- package/client/parametrage/paramReactbundle.js +500 -0
- package/client/parametrage/parametrage.css +111 -0
- package/client/parametrage/parametrage.html +163 -0
- package/client/parametrage/src/paramReact.js +459 -0
- package/client/score/hash.js +83 -0
- package/client/score/p5.min.js +3 -0
- package/client/score/parto1.js +1171 -0
- package/client/score/parto1bundle.js +1181 -0
- package/client/score/processing.min.js +431 -0
- package/client/score/score.html +15 -0
- package/client/score/score.js +34 -0
- package/client/simulateurListe/simulateurFork.js +750 -0
- package/client/simulateurListe/simulateurFork.mjs +681 -0
- package/client/simulateurListe/simulateurForkSansReorg.js +569 -0
- package/client/simulateurListe/simulateurListe.js +628 -0
- package/myReact/archive/Nodeemitvaluedlocal1.hh.js +52 -0
- package/myReact/archive/abort-parNode.js +79 -0
- package/myReact/archive/abroNode.js +169 -0
- package/myReact/archive/abroNode2.js +80 -0
- package/myReact/archive/atom.compile.hh.js +51 -0
- package/myReact/archive/await-countNode.js +67 -0
- package/myReact/archive/await-nowvalNode.js +44 -0
- package/myReact/archive/callHH.js +96 -0
- package/myReact/archive/emit-if2.hh.compiled.js +113 -0
- package/myReact/archive/every1Node.js +35 -0
- package/myReact/archive/if-runNode.js +74 -0
- package/myReact/archive/if1Node.js +43 -0
- package/myReact/archive/makeawait.js +0 -0
- package/myReact/archive/myReact.old.js +684 -0
- package/myReact/archive/orchestration.js +281 -0
- package/myReact/archive/orchestration1.js +132 -0
- package/myReact/archive/orchestration1.xml +465 -0
- package/myReact/archive/orchestration2.js +161 -0
- package/myReact/archive/orchestrationHH.mano.js +280 -0
- package/myReact/archive/orchestrationHHTest.js +428 -0
- package/myReact/archive/orchestrationHHTest.xml +234 -0
- package/myReact/archive/orchestrationHHTestRun.js +104 -0
- package/myReact/archive/orchestrationHHTestRun.xml +34 -0
- package/myReact/archive/orchestrationTest0.js +178 -0
- package/myReact/archive/orchestrationTest1.js +181 -0
- package/myReact/archive/orchestrationTest2.js +281 -0
- package/myReact/archive/run3pointsNode.js +59 -0
- package/myReact/archive/runNode.js +123 -0
- package/myReact/archive/runNode2.js +91 -0
- package/myReact/archive/testAwait1.js +141 -0
- package/myReact/archive/testAwait1.xml +86 -0
- package/myReact/archive/testEvery1.js +122 -0
- package/myReact/archive/testEvery1.xml +79 -0
- package/myReact/archive/testHH1.js +135 -0
- package/myReact/archive/testHH1.xml +86 -0
- package/myReact/archive/testHH1revu.js +104 -0
- package/myReact/archive/testHH2.js +122 -0
- package/myReact/archive/testHH2.xml +79 -0
- package/myReact/archive/testHH3.js +130 -0
- package/myReact/archive/testHH3.xml +86 -0
- package/myReact/archive/testHHabort.js +121 -0
- package/myReact/archive/testHHabort.xml +83 -0
- package/myReact/archive/testMakeawait.js +202 -0
- package/myReact/archive/testRun1.js +168 -0
- package/myReact/archive/testRun1.xml +142 -0
- package/myReact/archive/titi.js +28 -0
- package/myReact/archive/titi.xml +110 -0
- package/myReact/archive/toto.js +73 -0
- package/myReact/archive/toto.xml +198 -0
- package/myReact/archive/trap-await-parallelNode.js +123 -0
- package/myReact/inutiles/hiver2022.xml +804 -0
- package/myReact/inutiles/hopeNode.xml +459 -0
- package/myReact/inutiles/mars2022.xml +871 -0
- package/myReact/inutiles/mystique1.xml +318 -0
- package/myReact/inutiles/mystiqueOSC.xml +277 -0
- package/myReact/inutiles/opus5Node.xml +1271 -0
- package/myReact/inutiles/opus5NodeLinux.xml +1241 -0
- package/myReact/inutiles/orchestrationHH.xml +541 -0
- package/myReact/inutiles/orchestrationHH2.xml +547 -0
- package/myReact/inutiles/testHH.xml +95 -0
- package/myReact/inutiles/trouveLaPercuTenor.xml +349 -0
- package/myReact/myReact.js +744 -0
- package/myReact/myReact.min.js +1 -0
- package/myReact/orchestrationHH.js +311 -0
- package/myReact/orchestrationHH.mjs +436 -0
- package/myReact/orchestrationHH.mjs.map +1 -0
- package/package.json +46 -0
- package/serveur/OSCandMidi.mjs +361 -0
- package/serveur/computeScore.mjs +415 -0
- package/serveur/controleDAW.mjs +1149 -0
- package/serveur/defaultSession.csv +2 -0
- package/serveur/defaultSkiniParametres.js +119 -0
- package/serveur/gameOSC.mjs +96 -0
- package/serveur/groupeClientsSons.mjs +1014 -0
- package/serveur/ipConfig.json +24 -0
- package/serveur/ipConfig127.json +19 -0
- package/serveur/ipConfig75.json +17 -0
- package/serveur/ipConfigBH.json +19 -0
- package/serveur/ipConfigLocal.json +19 -0
- package/serveur/midiConfig.json +26 -0
- package/serveur/midiConfigBH.json +26 -0
- package/serveur/midiConfigVoid.json +3 -0
- package/serveur/midimix.mjs +570 -0
- package/serveur/saveParam.mjs +159 -0
- package/serveur/skiniParametres.good.js +132 -0
- package/serveur/skiniParametres.js +106 -0
- package/serveur/utilsHHSkini.hh.js +64 -0
- package/serveur/utilsSkini.mjs +137 -0
- package/serveur/websocketServer.mjs +2052 -0
- package/serveur/workerInterfaceZ.mjs +327 -0
- package/serveur/workerSynchro.mjs +49 -0
- package/skini.mjs +141 -0
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
html, body {
|
|
2
|
+
height: 100%;
|
|
3
|
+
margin: 0;
|
|
4
|
+
}
|
|
5
|
+
body {
|
|
6
|
+
background-color: #fff;
|
|
7
|
+
font-family: sans-serif;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
h1 {
|
|
12
|
+
font-weight: normal;
|
|
13
|
+
font-size: 140%;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
h2 {
|
|
17
|
+
font-weight: normal;
|
|
18
|
+
font-size: 100%;
|
|
19
|
+
color: white;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
table {
|
|
23
|
+
height: 100%;
|
|
24
|
+
width: 100%;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
#blocklyArea {
|
|
28
|
+
height: 99%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
main {
|
|
32
|
+
width: 400px;
|
|
33
|
+
position: relative;
|
|
34
|
+
margin: 0 auto;
|
|
35
|
+
overflow:hidden;
|
|
36
|
+
height: 600px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
header {
|
|
40
|
+
background-color: #1a6e91;
|
|
41
|
+
width: 100%;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
h1 {
|
|
45
|
+
width: 400px;
|
|
46
|
+
position: relative;
|
|
47
|
+
margin: 0 auto;
|
|
48
|
+
color: #fff;
|
|
49
|
+
font-size: 1.8em;
|
|
50
|
+
line-height: 2.4em;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.mdl-button {
|
|
54
|
+
margin: 1em 0;
|
|
55
|
+
float: right;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.inputText {
|
|
59
|
+
font: bold 13px arial, helvetica, sans-serif;
|
|
60
|
+
background-color: #ddd;
|
|
61
|
+
color: #555;
|
|
62
|
+
font-size: 0.9em;
|
|
63
|
+
line-height: 1.3em;
|
|
64
|
+
width:150px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
#consoleArea {
|
|
68
|
+
font: bold 13px arial, helvetica, sans-serif;
|
|
69
|
+
background-color: #ddd;
|
|
70
|
+
color: #555;
|
|
71
|
+
font-size: 0.9em;
|
|
72
|
+
line-height: 1.3em;
|
|
73
|
+
width: 500;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
input[type="file"] {
|
|
77
|
+
display: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.loadFile {
|
|
81
|
+
zoom: 1;
|
|
82
|
+
padding: 6px 20px;
|
|
83
|
+
margin: 0;
|
|
84
|
+
border: 1px solid #bbb;
|
|
85
|
+
font: bold 13px arial, helvetica, sans-serif;
|
|
86
|
+
text-decoration: none;
|
|
87
|
+
white-space: nowrap;
|
|
88
|
+
color: #555;
|
|
89
|
+
background-color: #ddd;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.button{
|
|
93
|
+
display: inline-block;
|
|
94
|
+
*display: inline;
|
|
95
|
+
zoom: 1;
|
|
96
|
+
padding: 6px 20px;
|
|
97
|
+
margin: 0;
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
border: 1px solid #bbb;
|
|
100
|
+
overflow: visible;
|
|
101
|
+
font: bold 13px arial, helvetica, sans-serif;
|
|
102
|
+
text-decoration: none;
|
|
103
|
+
white-space: nowrap;
|
|
104
|
+
color: #555;
|
|
105
|
+
|
|
106
|
+
background-color: #ddd;
|
|
107
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
|
|
108
|
+
background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
|
109
|
+
background-image: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
|
110
|
+
background-image: -ms-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
|
111
|
+
background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
|
112
|
+
background-image: linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
|
113
|
+
|
|
114
|
+
-webkit-transition: background-color .2s ease-out;
|
|
115
|
+
-moz-transition: background-color .2s ease-out;
|
|
116
|
+
-ms-transition: background-color .2s ease-out;
|
|
117
|
+
-o-transition: background-color .2s ease-out;
|
|
118
|
+
transition: background-color .2s ease-out;
|
|
119
|
+
background-clip: padding-box; /* Fix bleeding */
|
|
120
|
+
-moz-border-radius: 3px;
|
|
121
|
+
-webkit-border-radius: 3px;
|
|
122
|
+
border-radius: 3px;
|
|
123
|
+
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
|
|
124
|
+
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
|
|
125
|
+
box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
|
|
126
|
+
text-shadow: 0 1px 0 rgba(255,255,255, .9);
|
|
127
|
+
|
|
128
|
+
-webkit-touch-callout: none;
|
|
129
|
+
-webkit-user-select: none;
|
|
130
|
+
-khtml-user-select: none;
|
|
131
|
+
-moz-user-select: none;
|
|
132
|
+
-ms-user-select: none;
|
|
133
|
+
user-select: none;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.button:hover{
|
|
137
|
+
background-color: #eee;
|
|
138
|
+
color: #555;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.button:active{
|
|
142
|
+
background: #e9e9e9;
|
|
143
|
+
position: relative;
|
|
144
|
+
top: 1px;
|
|
145
|
+
text-shadow: none;
|
|
146
|
+
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
|
|
147
|
+
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
|
|
148
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.button[disabled], .button[disabled]:hover, .button[disabled]:active{
|
|
152
|
+
border-color: #eaeaea;
|
|
153
|
+
background: #fafafa;
|
|
154
|
+
cursor: default;
|
|
155
|
+
position: static;
|
|
156
|
+
color: #999;
|
|
157
|
+
/* Usually, !important should be avoided but here it's really needed :) */
|
|
158
|
+
-moz-box-shadow: none !important;
|
|
159
|
+
-webkit-box-shadow: none !important;
|
|
160
|
+
box-shadow: none !important;
|
|
161
|
+
text-shadow: none !important;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* Smaller buttons styles */
|
|
165
|
+
|
|
166
|
+
.button.small{
|
|
167
|
+
padding: 4px 12px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/* Larger buttons styles */
|
|
171
|
+
|
|
172
|
+
.button.large{
|
|
173
|
+
padding: 12px 30px;
|
|
174
|
+
text-transform: uppercase;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.button.large:active{
|
|
178
|
+
top: 2px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/* Colored buttons styles */
|
|
182
|
+
|
|
183
|
+
.button.green, .button.red, .button.blue {
|
|
184
|
+
color: #fff;
|
|
185
|
+
text-shadow: 0 1px 0 rgba(0,0,0,.2);
|
|
186
|
+
|
|
187
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0)));
|
|
188
|
+
background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
|
189
|
+
background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
|
190
|
+
background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
|
191
|
+
background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
|
192
|
+
background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/* */
|
|
196
|
+
|
|
197
|
+
.button.green{
|
|
198
|
+
background-color: #57a957;
|
|
199
|
+
border-color: #57a957;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.button.green:hover{
|
|
203
|
+
background-color: #62c462;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.button.green:active{
|
|
207
|
+
background: #57a957;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/* */
|
|
211
|
+
|
|
212
|
+
.button.red{
|
|
213
|
+
background-color: #ca3535;
|
|
214
|
+
border-color: #c43c35;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.button.red:hover{
|
|
218
|
+
background-color: #ee5f5b;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.button.red:active{
|
|
222
|
+
background: #c43c35;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/* */
|
|
226
|
+
|
|
227
|
+
.button.blue{
|
|
228
|
+
background-color: #269CE9;
|
|
229
|
+
border-color: #269CE9;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.button.blue:hover{
|
|
233
|
+
background-color: #70B9E8;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.button.blue:active{
|
|
237
|
+
background: #269CE9;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
/* */
|
|
241
|
+
|
|
242
|
+
.green[disabled], .green[disabled]:hover, .green[disabled]:active{
|
|
243
|
+
border-color: #57A957;
|
|
244
|
+
background: #57A957;
|
|
245
|
+
color: #D2FFD2;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.red[disabled], .red[disabled]:hover, .red[disabled]:active{
|
|
249
|
+
border-color: #C43C35;
|
|
250
|
+
background: #C43C35;
|
|
251
|
+
color: #FFD3D3;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.blue[disabled], .blue[disabled]:hover, .blue[disabled]:active{
|
|
255
|
+
border-color: #269CE9;
|
|
256
|
+
background: #269CE9;
|
|
257
|
+
color: #93D5FF;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/* Group buttons */
|
|
261
|
+
|
|
262
|
+
.button-group,
|
|
263
|
+
.button-group li{
|
|
264
|
+
display: inline-block;
|
|
265
|
+
*display: inline;
|
|
266
|
+
zoom: 1;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.button-group{
|
|
270
|
+
font-size: 0; /* Inline block elements gap - fix */
|
|
271
|
+
margin: 0;
|
|
272
|
+
padding: 0;
|
|
273
|
+
background: rgba(0, 0, 0, .1);
|
|
274
|
+
border-bottom: 1px solid rgba(0, 0, 0, .1);
|
|
275
|
+
padding: 7px;
|
|
276
|
+
-moz-border-radius: 7px;
|
|
277
|
+
-webkit-border-radius: 7px;
|
|
278
|
+
border-radius: 7px;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.button-group li{
|
|
282
|
+
margin-right: -1px; /* Overlap each right button border */
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.button-group .button{
|
|
286
|
+
font-size: 13px; /* Set the font size, different from inherited 0 */
|
|
287
|
+
-moz-border-radius: 0;
|
|
288
|
+
-webkit-border-radius: 0;
|
|
289
|
+
border-radius: 0;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.button-group .button:active{
|
|
293
|
+
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
294
|
+
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
295
|
+
box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.button-group li:first-child .button{
|
|
299
|
+
-moz-border-radius: 3px 0 0 3px;
|
|
300
|
+
-webkit-border-radius: 3px 0 0 3px;
|
|
301
|
+
border-radius: 3px 0 0 3px;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.button-group li:first-child .button:active{
|
|
305
|
+
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
306
|
+
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
307
|
+
box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.button-group li:last-child .button{
|
|
311
|
+
-moz-border-radius: 0 3px 3px 0;
|
|
312
|
+
-webkit-border-radius: 0 3px 3px 0;
|
|
313
|
+
border-radius: 0 3px 3px 0;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.button-group li:last-child .button:active{
|
|
317
|
+
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
318
|
+
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
319
|
+
box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
|
320
|
+
}
|