eda.dragdropway.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862
  1. /*!
  2. * easyFormGenerator — drag and drop way — version
  3. * Version 1.1.0
  4. * Author : Erwan Datin (MacKentoch)
  5. *Link: https://github.com/MacKentoch/easyFormGenerator
  6. * License : 2015 MIT
  7. */
  8. /*=========================================================
  9. colors const
  10. ===========================================================*/
  11. /*=========================================================
  12. fonts const
  13. ===========================================================*/
  14. /*=========================================================
  15. common
  16. ===========================================================*/
  17. /*=========================================================
  18. common
  19. ===========================================================*/
  20. body {
  21. padding-top: 50px;
  22. padding-bottom: 20px;
  23. height: 100%;
  24. background-color: #F2F2F2;
  25. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  26. .margintop60px {
  27. margin-top: 80px; }
  28. .margintop120px {
  29. margin-top: 120px; }
  30. .vAlignMiddle {
  31. vertical-align: middle; }
  32. [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  33. display: none !important; }
  34. /*=========================================================
  35. bootstrap overrides
  36. ===========================================================*/
  37. .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  38. background-color: #0d87e9;
  39. border-color: #2196f3; }
  40. /*correction bug sur theme bootstrap journal*/
  41. .modal-backdrop {
  42. z-index: -1; }
  43. .navbar-right {
  44. margin-right: 20px; }
  45. textarea, textarea.form-control, input.form-control,
  46. input[type=text], input[type=password], input[type=email],
  47. input[type=number], [type=text].form-control, [type=password].form-control,
  48. [type=email].form-control, [type=tel].form-control, [contenteditable].form-control {
  49. font-size: 13px; }
  50. select, select.form-control {
  51. font-size: 13px; }
  52. /*container to 100%*/
  53. @media (min-width: 1200px) {
  54. .container {
  55. width: 100%;
  56. margin-right: 20px; } }
  57. @media (min-width: 768px) {
  58. .container {
  59. width: 100%;
  60. margin-right: 20px; } }
  61. @media (min-width: 992px) {
  62. .container {
  63. width: 100%; } }
  64. .container-fluid {
  65. margin-right: auto;
  66. margin-left: auto; }
  67. .container-fluid padding {
  68. left: 30px;
  69. right: 30px; }
  70. .panel-default > .panel-heading {
  71. color: #212121;
  72. background-color: #fff;
  73. border-color: #eee; }
  74. .navbar-nav > li > a {
  75. line-height: 30px; }
  76. .navbar-default .navbar-brand {
  77. line-height: initial; }
  78. .panel-heading {
  79. background-color: none;
  80. border-bottom: solid 1px #eee; }
  81. .navBtnGroup {
  82. padding-top: 20px;
  83. padding-bottom: 22px;
  84. padding-right: 15px;
  85. padding-left: 15px; }
  86. .table > thead > tr > th,
  87. .table > tbody > tr > th,
  88. .table > tfoot > tr > th,
  89. .table > thead > tr > td,
  90. .table > tbody > tr > td,
  91. .table > tfoot > tr > td {
  92. vertical-align: middle; }
  93. a:hover {
  94. color: #fff; }
  95. a:focus {
  96. color: #fff; }
  97. /*Forms setup*/
  98. .form-control {
  99. border-radius: 0;
  100. box-shadow: none;
  101. height: auto; }
  102. .float-label {
  103. font-size: 10px; }
  104. .socialIcon {
  105. font-size: 32px; }
  106. .socialIcon:hover {
  107. color: #F2F2F2; }
  108. input[type="text"].form-control,
  109. input[type="search"].form-control {
  110. border: none;
  111. border-bottom: 1px dotted #CFCFCF; }
  112. textarea {
  113. border: 1px dotted #CFCFCF !important;
  114. height: 130px !important; }
  115. /*Content Container*/
  116. .content-container {
  117. background-color: #fff;
  118. padding: 35px 20px;
  119. margin-bottom: 20px; }
  120. h1.content-title {
  121. font-size: 32px;
  122. font-weight: 300;
  123. text-align: center;
  124. margin-top: 0;
  125. margin-bottom: 20px;
  126. font-family: "Open Sans", sans-serif !important; }
  127. /*paper theme bootstrap*/
  128. .form-control {
  129. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  130. display: block;
  131. width: 100%;
  132. height: 39px;
  133. padding: 8px 12px;
  134. font-size: 13px;
  135. line-height: 1.42857143;
  136. color: #777777;
  137. background-color: #ffffff;
  138. background-image: none;
  139. border: 1px solid #cccccc;
  140. border-radius: 4px;
  141. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  142. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  143. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  144. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  145. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; }
  146. .form-control:focus {
  147. border-color: #66afe9;
  148. outline: 0;
  149. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  150. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  151. .form-control::-moz-placeholder {
  152. color: #999999;
  153. opacity: 1; }
  154. .form-control:-ms-input-placeholder {
  155. color: #999999; }
  156. .form-control::-webkit-input-placeholder {
  157. color: #999999; }
  158. .form-control[disabled],
  159. .form-control[readonly],
  160. fieldset[disabled] .form-control {
  161. background-color: #eeeeee;
  162. opacity: 1; }
  163. .form-control[disabled],
  164. fieldset[disabled] .form-control {
  165. cursor: not-allowed; }
  166. textarea.form-control {
  167. height: auto; }
  168. .fakeControl[disabled] {
  169. background-color: #fff;
  170. opacity: 1; }
  171. .fakeControl[disabled] {
  172. cursor: all-scroll; }
  173. .radio input[type=radio].fakeCheck {
  174. cursor: all-scroll; }
  175. .checkbox input[type=checkbox].fakeCheck {
  176. cursor: all-scroll; }
  177. label.fakeCheck {
  178. cursor: all-scroll; }
  179. /* animation ng-repeat
  180. easy customize animation from here : http://www.nganimate.org/angularjs/ng-repeat/yo-yo-css3-keyframes-animation*/
  181. .animate-enter {
  182. -webkit-animation: enter 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  183. animation: enter 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  184. display: block;
  185. position: relative; }
  186. @-webkit-keyframes enter {
  187. from {
  188. opacity: 0;
  189. height: 0px;
  190. left: -70px; }
  191. 75% {
  192. left: 15px; }
  193. to {
  194. opacity: 1;
  195. height: 30px;
  196. left: 0px; } }
  197. @keyframes enter {
  198. from {
  199. opacity: 0;
  200. height: 0px;
  201. left: -70px; }
  202. 75% {
  203. left: 15px; }
  204. to {
  205. opacity: 1;
  206. height: 30px;
  207. left: 0px; } }
  208. .animate-leave {
  209. -webkit-animation: leave 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  210. animation: leave 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  211. display: block;
  212. position: relative; }
  213. @-webkit-keyframes leave {
  214. to {
  215. opacity: 0;
  216. height: 0px;
  217. left: -70px; }
  218. 25% {
  219. left: 15px; }
  220. from {
  221. opacity: 1;
  222. height: 30px;
  223. left: 0px; } }
  224. @keyframes leave {
  225. to {
  226. opacity: 0;
  227. height: 0px;
  228. left: -70px; }
  229. 25% {
  230. left: 15px; }
  231. from {
  232. opacity: 1;
  233. height: 30px;
  234. left: 0px; } }
  235. /* td table in myprofile */
  236. .tdCommun, .td40, .td60 {
  237. height: 75px;
  238. vertical-align: none; }
  239. .td40 {
  240. width: 40%; }
  241. .td60 {
  242. width: 60%; }
  243. .table-user-information > thead > tr > th,
  244. .table-user-information > tbody > tr > th,
  245. .table-user-information > tfoot > tr > th,
  246. .table-user-information > thead > tr > td,
  247. .table-user-information > tbody > tr > td,
  248. .table-user-information > tfoot > tr > td {
  249. vertical-align: middle; }
  250. /*=========================================================
  251. ANGULAR ANIMATIONS (in pair on animate.css)
  252. ===========================================================*/
  253. /* animation on ng-switch */
  254. .switchAngularFadeIn .ng-enter {
  255. -webkit-animation: fadeIn 1s;
  256. -moz-animation: fadeIn 1s;
  257. -ms-animation: fadeIn 1s;
  258. animation: fadeIn 1s; }
  259. /*=========================================================
  260. wfEdit
  261. ===========================================================*/
  262. #pageWfEdit {
  263. margin-top: 40px;
  264. margin-/* right:2%;
  265. left:2%; */
  266. padding-top: 30px;
  267. padding-bottom: 30px;
  268. background-color: #F2F2F2;
  269. /* border-top: solid 3px white;
  270. border-bottom: solid 3px white; */ }
  271. .lineCommandButtons {
  272. padding-bottom: 25px; }
  273. .addNewLine {
  274. font-size: 24px;
  275. vertical-align: middle;
  276. color: #666666; }
  277. #editor {
  278. margin-top: 0px;
  279. margin-bottom: 0px;
  280. height: 150px;
  281. background-color: #52B3D9;
  282. border-bottom: solid 1px #2C3E50; }
  283. #editor-content {
  284. /* padding-top: 25px; */
  285. /* padding-bottom: 25px; */
  286. text-align: center;
  287. color: white;
  288. font-size: 13px; }
  289. #preview {
  290. margin-top: 0px;
  291. margin-bottom: 0px;
  292. /* background-color: #E4F1FE; */
  293. border: solid 1 px #2C3E50;
  294. -moz-box-shadow: 0px 0px 10px 0px #ddd;
  295. -webkit-box-shadow: 0px 10px 5px 0px #ddd;
  296. -o-box-shadow: 0px 0px 10px 0px #ddd;
  297. box-shadow: 0px 0px 10px 0px #ddd;
  298. filter: progid:DXImageTransform.Microsoft.Shadow(color=#ddd, Direction=NaN, Strength=10); }
  299. #preview-content {
  300. background-color: #FFF;
  301. padding-bottom: 25px;
  302. /*text-align: center;*/
  303. color: black;
  304. /*font-size: 13px;*/ }
  305. #commandPanel {
  306. padding-top: 25px;
  307. padding-bottom: 25px; }
  308. /* #commandPanel.affix {
  309. position: fixed;
  310. top: 0;
  311. width:25%;
  312. margin-top: -45px;
  313. } */
  314. #visualPanel {
  315. padding-top: 25px;
  316. padding-bottom: 25px; }
  317. .customPagerButton {
  318. width: 100px; }
  319. .numberOfColumnsLabel {
  320. font-size: 32px;
  321. text-align: center;
  322. padding-top: 25%;
  323. padding-bottom: 25%;
  324. font-weight: bold;
  325. text-align: center;
  326. color: #666666; }
  327. .btnMinusColumns {
  328. margin-top: 10px; }
  329. .btnAddColumns {
  330. margin-top: 10px; }
  331. .numberOfcolumsText {
  332. color: #666666; }
  333. .greyText {
  334. color: #666666; }
  335. .blackText {
  336. color: #000; }
  337. /*=========================================================
  338. ANIMATE NG-SWITCH
  339. =========================================================*/
  340. .animate-switch-container {
  341. position: relative;
  342. background: white;
  343. border-top: solid 1px #ECECEC;
  344. border-bottom: solid 1px #ECECEC;
  345. overflow: scroll; }
  346. .animate-switch-container .well {
  347. background-color: #89C4F4;
  348. margin-bottom: 0px;
  349. color: #ECECEC; }
  350. .linesList {
  351. margin-top: 5px; }
  352. /*switch 1 : move top*/
  353. .animate-switch {
  354. padding: 10px; }
  355. .animate-switch.ng-animate {
  356. -webkit-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
  357. transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
  358. position: absolute;
  359. top: 0;
  360. left: 0;
  361. right: 0;
  362. bottom: 0; }
  363. .animate-switch.ng-leave.ng-leave-active,
  364. .animate-switch.ng-enter {
  365. left: 0px;
  366. top: -500px;
  367. opacity: 0; }
  368. .animate-switch.ng-leave,
  369. .animate-switch.ng-enter.ng-enter-active {
  370. left: 0px;
  371. top: 0px;
  372. opacity: 0.8; }
  373. /*=========================================================
  374. STEP INDICATOR
  375. =========================================================*/
  376. .stepwizardTopmargin {
  377. margin-top: 25px; }
  378. .stepwizard-step p {
  379. margin-top: 10px;
  380. color: #666666; }
  381. .stepwizard-row {
  382. display: table-row; }
  383. .stepwizard {
  384. display: table;
  385. width: 100%;
  386. position: relative; }
  387. .stepwizard-step button[disabled] {
  388. opacity: 1 !important;
  389. filter: alpha(opacity=100) !important; }
  390. .stepwizard-row:before {
  391. top: 14px;
  392. bottom: 0;
  393. position: absolute;
  394. content: " ";
  395. width: 100%;
  396. height: 1px;
  397. background-color: #ccc;
  398. z-order: 0; }
  399. .stepwizard-step {
  400. display: table-cell;
  401. text-align: center;
  402. position: relative; }
  403. .btn-circle {
  404. width: 30px;
  405. height: 30px;
  406. text-align: center;
  407. padding: 6px 0;
  408. font-size: 12px;
  409. line-height: 1.428571429;
  410. border-radius: 15px; }
  411. .panelDebugScope {
  412. color: #000; }
  413. /*=========================================================
  414. Modal add control
  415. =========================================================*/
  416. .texteRouge {
  417. color: #CF000F; }
  418. .editPropertiesLabel {
  419. margin-top: 6px; }
  420. .textControlLabel {
  421. color: #000; }
  422. .marginTopFivepixels {
  423. margin-top: 5px; }
  424. .marginTopTenpixels {
  425. margin-top: 5px; }
  426. .checkboxCssCorrection {
  427. font-size: 4px; }
  428. .noGroupText {
  429. margin-bottom: 0px; }
  430. .nya-bs-select {
  431. margin-bottom: 16px; }
  432. .ta-scroll-window {
  433. margin-bottom: 16px; }
  434. .formly-field-checkbox {
  435. margin-top: 28px; }
  436. #inputAddNewRadioOption {
  437. margin-bottom: 20px; }
  438. #inputAddNewBasicOption {
  439. margin-bottom: 20px; }
  440. #inputAddNewGroupedOption {
  441. margin-bottom: 20px; }
  442. #inputAddNewGroupGroupedOption {
  443. margin-bottom: 20px; }
  444. .editGroupedSelectnyaSelect {
  445. margin-bottom: 0px; }
  446. .heading-preview {
  447. cursor: pointer; }
  448. /*=========================================================
  449. specific drag and drop test (will change or be deleted)
  450. ===========================================================*/
  451. /***************************** pageSlide directive css *****************************/
  452. /* Needed for hiding crollbars when pushing */
  453. html {
  454. overflow-x: hidden; }
  455. .ng-pageslide {
  456. background: #eee;
  457. box-shadow: 5px 1px 12px 0px rgba(188, 183, 183, 0.7);
  458. -moz-box-shadow: 5px 1px 12px 0px rgba(188, 183, 183, 0.7);
  459. -webkit-box-shadow: 5px 1px 12px 0px rgba(188, 183, 183, 0.7); }
  460. #controlEditLeftPanel {
  461. margin-top: 95px;
  462. padding-top: 20px;
  463. padding-bottom: 20px;
  464. padding-right: 10px;
  465. padding-left: 10px;
  466. height: 85%;
  467. overflow-y: scroll; }
  468. .separator10pixel {
  469. margin-top: 5px;
  470. margin-bottom: 5px;
  471. height: 25px; }
  472. .panelControlWidth {
  473. width: 45%; }
  474. /***************************** Required styles *****************************/
  475. /**
  476. * For the correct positioning of the placeholder element, the dnd-list and
  477. * it's children must have position: relative
  478. */
  479. .advancedDemo ul[dnd-list],
  480. .advancedDemo ul[dnd-list] > li {
  481. position: relative;
  482. border: solid 1px #F1F1F1; }
  483. /***************************** Dropzone Styling *****************************/
  484. /**
  485. * The dnd-list should always have a min-height,
  486. * otherwise you can't drop to it once it's empty
  487. */
  488. .advancedDemo .dropzone ul[dnd-list] {
  489. min-height: 42px;
  490. margin: 0px;
  491. padding-left: 0px; }
  492. /**
  493. * The dnd-lists's child elements currently MUST have
  494. * position: relative. Otherwise we can not determine
  495. * whether the mouse pointer is in the upper or lower
  496. * half of the element we are dragging over. In other
  497. * browsers we can use event.offsetY for this.
  498. */
  499. .advancedDemo .dropzone li {
  500. display: block; }
  501. /**
  502. * Reduce opacity of elements during the drag operation. This allows the user
  503. * to see where he is dropping his element, even if the element is huge. The
  504. * .dndDragging class is automatically set during the drag operation.
  505. */
  506. .advancedDemo .dropzone .dndDragging {
  507. opacity: 0.7;
  508. border: 2px dotted #000; }
  509. /**
  510. * The dndDraggingSource class will be applied to the source element of a drag
  511. * operation. It makes sense to hide it to give the user the feeling that he's
  512. * actually moving it. Note that the source element has also .dndDragging class.
  513. */
  514. .advancedDemo .dropzone .dndDraggingSource {
  515. display: none; }
  516. /**
  517. * An element with .dndPlaceholder class will be added as child of the dnd-list
  518. * while the user is dragging over it.
  519. */
  520. .advancedDemo .dropzone .dndPlaceholder {
  521. background-color: #ddd !important;
  522. min-height: 155px;
  523. display: block;
  524. position: relative;
  525. -moz-box-shadow: inset 0px 0px 5px 0px #343434;
  526. -webkit-box-shadow: inset 0px 0px 5px 0px #343434;
  527. -o-box-shadow: inset 0px 0px 5px 0px #343434;
  528. box-shadow: inset 0px 0px 5px 0px #343434;
  529. filter: progid:DXImageTransform.Microsoft.Shadow(color=#343434, Direction=NaN, Strength=5); }
  530. /***************************** Element type specific styles *****************************/
  531. .advancedDemo .dropzone .itemlist {
  532. min-height: 115px !important; }
  533. ul.itemlist.ng-scope {
  534. border: none; }
  535. .effect1ForDragDropItem, #itemContent {
  536. -webkit-box-shadow: 0 10px 6px -6px #777;
  537. -moz-box-shadow: 0 10px 6px -6px #777;
  538. box-shadow: 0 10px 6px -6px #777;
  539. min-height: 115px; }
  540. .advancedDemo .dropzone .itemlist > li {
  541. border: none;
  542. min-width: 180px;
  543. border-radius: .25em;
  544. float: left;
  545. font-weight: 700;
  546. height: 135px; }
  547. #itemContent {
  548. background-color: #fff;
  549. border: 2px outset #0d87e9;
  550. border-radius: .25em;
  551. color: #fff;
  552. float: left;
  553. font-weight: 700;
  554. height: 115px;
  555. margin: 5px;
  556. padding: 3px;
  557. text-align: center;
  558. width: 100%;
  559. cursor: all-scroll; }
  560. .dragItemtextarea {
  561. height: 60px; }
  562. textarea {
  563. border: 1px dotted #CFCFCF !important;
  564. height: 50px !important; }
  565. .advancedDemo .dropzone .container-element {
  566. margin: 10px; }
  567. .isCollapsableZone {
  568. cursor: pointer; }
  569. .buttonHeaderAddNewLine {
  570. margin-top: 15px;
  571. margin-bottom: 0px; }
  572. .buttonCloneLineHidden {
  573. visibility: hidden; }
  574. .buttonCloseLine {
  575. margin-top: -10px;
  576. margin-right: -10px;
  577. border-radius: 50%;
  578. height: 45px; }
  579. .interligne {
  580. padding-bottom: 10px; }
  581. .confirmLineDelete {
  582. margin-top: 0;
  583. margin-bottom: 0;
  584. background-color: #F5F5F5;
  585. opacity: 1.0;
  586. -webkit-animation: shake 1.3s infinite;
  587. -moz-animation: shake 1.3s infinite;
  588. -ms-animation: shake 1.3s infinite;
  589. -o-animation: shake 1.3s infinite;
  590. animation: shake 1.3s infinite; }
  591. .demoddDatepicker {
  592. padding-left: 0;
  593. margin-left: 0; }
  594. .selectfordemo {
  595. margin-top: 30px; }
  596. /*=========================================================
  597. animation shake
  598. ===========================================================*/
  599. @-webkit-keyframes shake {
  600. 0%, 100% {
  601. -webkit-transform: translate3d(0, 0, 0);
  602. transform: translate3d(0, 0, 0); }
  603. 10%, 30%, 50%, 70%, 90% {
  604. -webkit-transform: translate3d(-10px, 0, 0);
  605. transform: translate3d(-10px, 0, 0); }
  606. 20%, 40%, 60%, 80% {
  607. -webkit-transform: translate3d(10px, 0, 0);
  608. transform: translate3d(10px, 0, 0); } }
  609. @keyframes shake {
  610. 0%, 100% {
  611. -webkit-transform: translate3d(0, 0, 0);
  612. transform: translate3d(0, 0, 0); }
  613. 10%, 30%, 50%, 70%, 90% {
  614. -webkit-transform: translate3d(-10px, 0, 0);
  615. transform: translate3d(-10px, 0, 0); }
  616. 20%, 40%, 60%, 80% {
  617. -webkit-transform: translate3d(10px, 0, 0);
  618. transform: translate3d(10px, 0, 0); } }
  619. .shake {
  620. -webkit-animation-name: shake;
  621. animation-name: shake; }
  622. .previewControlinItem {
  623. margin-top: 2%;
  624. background-color: #fff;
  625. padding-top: 5px;
  626. padding-bottom: 5px;
  627. padding-left: 10px;
  628. padding-right: 10px;
  629. border-radius: 5px;
  630. color: #F1F1F1;
  631. font-size: 18px; }
  632. .vertical-line {
  633. border-left: thick solid #000; }
  634. /*=========================================================
  635. animation glyphicon rotate
  636. ===========================================================*/
  637. .gly-spin {
  638. -webkit-animation: spin 2s infinite linear;
  639. -moz-animation: spin 2s infinite linear;
  640. -o-animation: spin 2s infinite linear;
  641. animation: spin 2s infinite linear; }
  642. @-moz-keyframes spin {
  643. 0% {
  644. -moz-transform: rotate(0deg); }
  645. 100% {
  646. -moz-transform: rotate(359deg); } }
  647. @-webkit-keyframes spin {
  648. 0% {
  649. -webkit-transform: rotate(0deg); }
  650. 100% {
  651. -webkit-transform: rotate(359deg); } }
  652. @-o-keyframes spin {
  653. 0% {
  654. -o-transform: rotate(0deg); }
  655. 100% {
  656. -o-transform: rotate(359deg); } }
  657. @keyframes spin {
  658. 0% {
  659. -webkit-transform: rotate(0deg);
  660. transform: rotate(0deg); }
  661. 100% {
  662. -webkit-transform: rotate(359deg);
  663. transform: rotate(359deg); } }
  664. .gly-rotate-90 {
  665. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  666. -webkit-transform: rotate(90deg);
  667. -moz-transform: rotate(90deg);
  668. -ms-transform: rotate(90deg);
  669. -o-transform: rotate(90deg);
  670. transform: rotate(90deg); }
  671. .gly-rotate-180 {
  672. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  673. -webkit-transform: rotate(180deg);
  674. -moz-transform: rotate(180deg);
  675. -ms-transform: rotate(180deg);
  676. -o-transform: rotate(180deg);
  677. transform: rotate(180deg); }
  678. .gly-rotate-270 {
  679. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  680. -webkit-transform: rotate(270deg);
  681. -moz-transform: rotate(270deg);
  682. -ms-transform: rotate(270deg);
  683. -o-transform: rotate(270deg);
  684. transform: rotate(270deg); }
  685. .gly-flip-horizontal {
  686. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  687. -webkit-transform: scale(-1, 1);
  688. -moz-transform: scale(-1, 1);
  689. -ms-transform: scale(-1, 1);
  690. -o-transform: scale(-1, 1);
  691. transform: scale(-1, 1); }
  692. .gly-flip-vertical {
  693. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  694. -webkit-transform: scale(1, -1);
  695. -moz-transform: scale(1, -1);
  696. -ms-transform: scale(1, -1);
  697. -o-transform: scale(1, -1);
  698. transform: scale(1, -1); }
  699. .rightClickCtrl {
  700. opacity: 1.0;
  701. -webkit-transition: opacity .3s ease-in;
  702. -moz-transition: opacity .3s ease-in;
  703. -o-transition: opacity .3s ease-in;
  704. transition: opacity .3s ease-in; }
  705. .rightClickCtrlSelected {
  706. opacity: 0.5; }
  707. /*=========================================================
  708. colors const
  709. ===========================================================*/
  710. /*=========================================================
  711. fonts const
  712. ===========================================================*/
  713. /*=========================================================
  714. common
  715. ===========================================================*/