ustore.css 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. *[is=x-ui] ui-rest > ui-content > ui-resizehandle {
  2. z-index: 1;
  3. }
  4. [is="x-ui"] ui-rest > ui-content > ui-area{
  5. padding: 2em !important;
  6. }
  7. #selectfolders{
  8. box-sizing: border-box;
  9. width: 100%;
  10. }
  11. .Folder{
  12. margin: 1em;
  13. float: left;
  14. text-align: center;
  15. width: 8em;
  16. }
  17. .FolderImage{
  18. font-size: 3em;
  19. }
  20. .FolderImageLink:hover .FolderText{
  21. text-decoration: underline;
  22. }
  23. .FolderTextNew{
  24. margin-top: -2.1em;
  25. }
  26. .HiddenremoveLink{
  27. padding-top:1em;
  28. visibility: hidden;
  29. }
  30. .FolderImageLink:hover ~ div{
  31. visibility: visible;
  32. }
  33. .HiddenremoveLink:hover{
  34. visibility: visible;
  35. }
  36. #detailcolumn{
  37. position: relative;
  38. min-height: 90%;
  39. }
  40. #MenuBar .showremoveitemsNot{
  41. display: inline;
  42. }
  43. #MenuBar .showremoveitems{
  44. display: none;
  45. }
  46. #Data .showremoveitems{
  47. display: none;
  48. width: auto;
  49. margin-bottom: 1em;
  50. }
  51. #MenuBar{
  52. margin: 2em 0em;
  53. padding: 1em;
  54. color: var(--x-ui-light-text-color);
  55. background-color: var(--x-ui-outside-color);
  56. }
  57. #MenuBar a{
  58. color: var(--x-ui-light-text-color);
  59. }
  60. .mouseOver{
  61. color:var(--x-ui-light-text-color) !important;
  62. text-decoration:none !important;
  63. overflow: hidden;
  64. display: block;
  65. }
  66. /*
  67. .mouseOver::after{
  68. content:"🛈";
  69. }
  70. */
  71. #content-wrap {
  72. min-height: 95%;
  73. padding-bottom: -100px; /* Footer height */
  74. }
  75. #RemoveFolder{
  76. color: white;
  77. background-color: #c6000094;
  78. /*box-sizing: border-box;*/
  79. left: 1em;
  80. right: 1em;
  81. height: 1em;
  82. padding: 1em;
  83. }
  84. #RemoveFolder a{
  85. color: black;
  86. }
  87. .DataItem{
  88. position: relative;
  89. margin: 1em;
  90. padding-bottom: 1em;
  91. float: left;
  92. text-align: center;
  93. width: 8em;
  94. }
  95. .spanwrapping{
  96. position: relative;
  97. height: 3.5em;
  98. }
  99. .DataItem span{
  100. display:inline-block;
  101. overflow: hidden;
  102. text-overflow: ellipsis;
  103. display: -webkit-box;
  104. -webkit-line-clamp: 2; /* number of lines to show */
  105. -webkit-box-orient: vertical;
  106. position: absolute;
  107. bottom: 0;
  108. right: 0;
  109. left: 0;
  110. }
  111. .DataImg{
  112. text-align: center;
  113. vertical-align: middle;
  114. width: 8em;
  115. height: 8em;
  116. border: 2px dashed #92b0b3;
  117. display: flex;
  118. justify-content: center;
  119. align-items: center;
  120. }
  121. .DataImg img{
  122. max-height: 100%;
  123. max-width: 100%;
  124. }
  125. .imageAlternative {
  126. vertical-align: middle;
  127. font-size: 6em;
  128. height: 100%;
  129. }
  130. #overlay {
  131. position: fixed; /* Sit on top of the page content */
  132. display: none; /* Hidden by default */
  133. width: 100%; /* Full width (cover the whole page) */
  134. height: 100%; /* Full height (cover the whole page) */
  135. top: 0;
  136. left: 0;
  137. right: 0;
  138. bottom: 0;
  139. background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  140. z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  141. cursor: pointer; /* Add a pointer on hover */
  142. text-align: center;
  143. vertical-align: middle;
  144. }
  145. #overlaycontentsize{
  146. position: absolute;
  147. top: 50%;
  148. left: 50%;
  149. font-size: 50px;
  150. color: white;
  151. transform: translate(-50%,-50%);
  152. -ms-transform: translate(-50%,-50%);
  153. background-color: rgba(255,255,255,1);
  154. max-height: 100%;
  155. max-width: 100%;
  156. }
  157. #overlaycontent{
  158. max-height: 100%;
  159. max-width: 100%;
  160. }
  161. /*Image Upload CSS*/
  162. .container
  163. {
  164. width: 100%;
  165. max-width: 680px; /* 800 */
  166. text-align: center;
  167. margin: 0 auto;
  168. }
  169. .container h1
  170. {
  171. font-size: 42px;
  172. font-weight: 300;
  173. color: #0f3c4b;
  174. margin-bottom: 40px;
  175. }
  176. .container h1 a:hover,
  177. .container h1 a:focus
  178. {
  179. color: #39bfd3;
  180. }
  181. .container nav
  182. {
  183. margin-bottom: 40px;
  184. }
  185. .container nav a
  186. {
  187. border-bottom: 2px solid #c8dadf;
  188. display: inline-block;
  189. padding: 4px 8px;
  190. margin: 0 5px;
  191. }
  192. .container nav a.is-selected
  193. {
  194. font-weight: 700;
  195. color: #39bfd3;
  196. border-bottom-color: currentColor;
  197. }
  198. .container nav a:not( .is-selected ):hover,
  199. .container nav a:not( .is-selected ):focus
  200. {
  201. border-bottom-color: #0f3c4b;
  202. }
  203. .container footer
  204. {
  205. color: #92b0b3;
  206. margin-top: 40px;
  207. }
  208. .container footer p + p
  209. {
  210. margin-top: 1em;
  211. }
  212. .container footer a:hover,
  213. .container footer a:focus
  214. {
  215. color: #39bfd3;
  216. }
  217. .box
  218. {
  219. font-size: 1.25rem; /* 20 */
  220. background-color: var(--x-ui-outside-color);
  221. position: relative;
  222. padding: 100px 20px;
  223. }
  224. .box.has-advanced-upload
  225. {
  226. outline: 2px dashed #92b0b3;
  227. outline-offset: -10px;
  228. -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  229. transition: outline-offset .15s ease-in-out, background-color .15s linear;
  230. }
  231. .box.is-dragover
  232. {
  233. outline-offset: -20px;
  234. outline-color: #c8dadf;
  235. background-color: #fff;
  236. }
  237. .box__dragndrop,
  238. .box__icon
  239. {
  240. display: none;
  241. }
  242. .box.has-advanced-upload .box__dragndrop
  243. {
  244. display: inline;
  245. }
  246. .box.has-advanced-upload .box__icon
  247. {
  248. width: 100%;
  249. height: 80px;
  250. fill: #92b0b3;
  251. display: block;
  252. margin-bottom: 40px;
  253. }
  254. .box.is-uploading .box__input,
  255. .box.is-success .box__input,
  256. .box.is-error .box__input
  257. {
  258. visibility: hidden;
  259. }
  260. .box__uploading,
  261. .box__success,
  262. .box__error
  263. {
  264. display: none;
  265. }
  266. .box.is-uploading .box__uploading,
  267. .box.is-success .box__success,
  268. .box.is-error .box__error
  269. {
  270. display: block;
  271. position: absolute;
  272. top: 50%;
  273. right: 0;
  274. left: 0;
  275. -webkit-transform: translateY( -50% );
  276. transform: translateY( -50% );
  277. }
  278. .box__uploading
  279. {
  280. font-style: italic;
  281. }
  282. .box__success
  283. {
  284. -webkit-animation: appear-from-inside .25s ease-in-out;
  285. animation: appear-from-inside .25s ease-in-out;
  286. }
  287. @-webkit-keyframes appear-from-inside
  288. {
  289. from { -webkit-transform: translateY( -50% ) scale( 0 ); }
  290. 75% { -webkit-transform: translateY( -50% ) scale( 1.1 ); }
  291. to { -webkit-transform: translateY( -50% ) scale( 1 ); }
  292. }
  293. @keyframes appear-from-inside
  294. {
  295. from { transform: translateY( -50% ) scale( 0 ); }
  296. 75% { transform: translateY( -50% ) scale( 1.1 ); }
  297. to { transform: translateY( -50% ) scale( 1 ); }
  298. }
  299. .box__restart
  300. {
  301. font-weight: 700;
  302. }
  303. .box__restart:focus,
  304. .box__restart:hover
  305. {
  306. color: #39bfd3;
  307. }
  308. .js .box__file
  309. {
  310. width: 0.1px !important;
  311. height: 0.1px;
  312. opacity: 0;
  313. overflow: hidden;
  314. position: absolute;
  315. z-index: -1;
  316. }
  317. .box__file{
  318. width: 10.5em !important;
  319. display: block !important;
  320. }
  321. .js .box__file + label
  322. {
  323. max-width: 80% !important;
  324. text-overflow: ellipsis;
  325. white-space: nowrap;
  326. cursor: pointer;
  327. display: inline-block;
  328. overflow: hidden;
  329. }
  330. .js .box__file + label:hover strong,
  331. .box__file:focus + label strong,
  332. .box__file.has-focus + label strong
  333. {
  334. color: #39bfd3;
  335. }
  336. .js .box__file:focus + label,
  337. .js .box__file.has-focus + label
  338. {
  339. outline: 1px dotted #000;
  340. outline: -webkit-focus-ring-color auto 5px;
  341. }
  342. .js .box__file + label *
  343. {
  344. /* pointer-events: none; */ /* in case of FastClick lib use */
  345. }
  346. .no-js .box__file + label
  347. {
  348. display: none;
  349. }
  350. .no-js .box__button
  351. {
  352. display: block;
  353. }
  354. .box__button
  355. {
  356. font-weight: 700;
  357. color: #e5edf1;
  358. background-color: #39bfd3;
  359. display: none;
  360. padding: 8px 16px;
  361. margin: 40px auto 0;
  362. }
  363. .box__button:hover,
  364. .box__button:focus
  365. {
  366. background-color: #0f3c4b;
  367. }