document.api.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. /** DOCUMENT **/
  2. .document-container{
  3. display: flex;
  4. flex:1;
  5. /*100vh - 50px (header) - 50px (footer)*/
  6. height: calc(100vh - 100px);
  7. user-select: none;
  8. }
  9. .document-container.embedded {
  10. margin: 0px;
  11. }
  12. .document-container ul{
  13. list-style-type: none;
  14. margin:0;
  15. padding:0;
  16. }
  17. .document-container .file-preloader{
  18. text-align: center;
  19. color: #cecece;
  20. font-size: 40px;
  21. position: absolute;
  22. width: 100%;
  23. left:0;
  24. top:100px;
  25. padding: 50px;
  26. }
  27. .document-container .file-preloader i{
  28. /*background-color: #ffffff;*/
  29. padding:5px;
  30. border-radius: 100px;
  31. }
  32. .document-container .file-preloader .fa-spin {
  33. animation: fa-spin 0.6s infinite linear;
  34. }
  35. .document-container .tree-panel {
  36. width: 15%;
  37. order:1;
  38. padding: 15px;
  39. color:#444444;
  40. background-color: #f5f4f4;
  41. /*background-color: #ddedff;*/
  42. font-size: 15px;
  43. border-right:1px solid #cecece;
  44. /*100vh - 50px (header) - 50px (footer)*/
  45. height: calc(100vh - 100px);
  46. overflow-y: auto;
  47. resize: horizontal;
  48. }
  49. .document-container .tree-panel > ul li.folder.folder-open>i.far.fa-folder,
  50. .document-container .tree-panel > ul li.folder.folder-open>i.far.fa-folder-open {
  51. font-weight: normal;
  52. }
  53. .document-container .tree-panel > ul li.folder.folder-open>i::before {
  54. content: "\f07c"!important;
  55. }
  56. .document-container i.far.fa-folder,
  57. .document-container i.far.fa-folder-open {
  58. color: #f1c40f;
  59. font-weight: bold;
  60. }
  61. .document-container .tree-panel > ul li i.fa-folder-open,.document-container .tree-panel > ul li i.fa-folder{
  62. display: inline-block;
  63. width: 15px;
  64. }
  65. .document-container .tree-panel > ul li.folder:before {
  66. content :'\f105';
  67. padding-right:10px;
  68. color:#aeaeae;
  69. font-family: 'Font Awesome 5 Free';
  70. font-weight: 900;
  71. display: inline-block;
  72. width: 15px;
  73. transition: all 0.2s ease-in-out;
  74. opacity: 0;
  75. }
  76. .document-container .tree-panel > ul li.folder.folder-open:before {
  77. content:'\f107';
  78. padding-right:6px;
  79. color:#444444;
  80. font-family: 'Font Awesome 5 Free';
  81. }
  82. .document-container .tree-panel > ul li.folder:hover:before {
  83. opacity:1;
  84. }
  85. .document-container .tree-panel > ul li.folder {
  86. transition: transform 0.1s linear;
  87. word-break: break-all;
  88. text-overflow: ellipsis;
  89. overflow: hidden;
  90. white-space: nowrap;
  91. }
  92. .document-container .tree-panel ul li.folder-focused {
  93. font-weight: bold;
  94. }
  95. .document-container .tree-panel ul li.folder-hover {
  96. font-weight: bold;
  97. }
  98. .document-container .tree-panel ul li.folder-hover:before {
  99. content:'\f107';
  100. padding-right:6px;
  101. color:#aeaeae;
  102. font-family: 'Font Awesome 5 Free';
  103. font-weight: 900;
  104. }
  105. .document-container .tree-panel ul li.folder-focused ul {
  106. font-weight: normal;
  107. }
  108. /* VUE LISTE */
  109. .document-container .file-elements-list tbody tr {
  110. cursor: pointer;
  111. transition: background 0.1s ease-in-out;
  112. }
  113. .document-container .file-elements-list tbody tr:hover {
  114. background-color: #f8f8f8;
  115. }
  116. .document-container .file-elements-list tbody tr .element-rename {
  117. opacity: 0;
  118. transform: translateX(-10px);
  119. margin-left: 10px;
  120. cursor: pointer;
  121. color:#cecece;
  122. transition: all 0.2s ease-in-out;
  123. }
  124. .document-container .file-elements-list tbody tr:hover .element-rename {
  125. transform: translateX(0);
  126. opacity:1;
  127. }
  128. .document-container .file-elements-list tbody tr.folder-receive-element {
  129. background-color:#bad4ff;
  130. }
  131. .file-elements-list .rename-input,.file-elements-list .rename-input:focus,.file-elements-list .rename-input:active{
  132. border:0px;
  133. padding:0;
  134. outline: none;
  135. }
  136. .document-container .file-elements-list .element-focused {
  137. font-weight: bold;
  138. background-color: #f8f8f8;
  139. }
  140. .document-container .file-elements-list .element-thumbnail {
  141. height: 15px;
  142. width: 15px;
  143. margin-right: 5px;
  144. }
  145. /* VUE GRILLE*/
  146. .document-container .file-elements-grid > li {
  147. cursor: pointer;
  148. display: inline-block;
  149. vertical-align: top;
  150. transition: background 0.1s ease-in-out;
  151. padding:15px;
  152. text-align: center;
  153. overflow: hidden;
  154. }
  155. .document-container ul.file-elements-grid{
  156. text-align: center;
  157. }
  158. .file-module[data-view="grid"] {
  159. background-color: #f8f8f8;
  160. }
  161. .document-container .file-elements-grid .name-cell > span > span{
  162. width: calc(100% - 45px)!important;
  163. display: inline-block;
  164. overflow: hidden;
  165. white-space: nowrap;
  166. text-overflow: ellipsis;
  167. }
  168. .document-container .file-elements-grid > li > .grid-container{
  169. border-radius:3px;
  170. width:250px;
  171. height:200px;
  172. background-color:#ffffff;
  173. padding: 15px 5px 5px 5px;
  174. border:1px solid #fefefe;
  175. box-shadow: 0 1px 4px rgba(165, 165, 165, 0.4);
  176. transition: all 0.2s ease-in-out;
  177. position: relative;
  178. }
  179. .document-container .file-elements-grid .element-thumbnail {
  180. border-radius: 5px 5px 0 0;
  181. background-repeat: no-repeat;
  182. background-position:center center;
  183. margin: -15px -6px 0 -6px;
  184. height: 100px;
  185. }
  186. .document-container .file-elements-grid .element-type-jpg .element-thumbnail,
  187. .document-container .file-elements-grid .element-type-jpeg .element-thumbnail,
  188. .document-container .file-elements-grid .element-type-png .element-thumbnail,
  189. .document-container .file-elements-grid .element-type-gif .element-thumbnail,
  190. .document-container .file-elements-grid .element-type-bmp .element-thumbnail
  191. {
  192. background-size: cover;
  193. position: absolute;
  194. width:250px;
  195. height:200px;
  196. z-index: 0;
  197. border-radius: 5px;
  198. }
  199. .document-container .file-elements-grid .element-type-jpg .element-infos,
  200. .document-container .file-elements-grid .element-type-jpeg .element-infos,
  201. .document-container .file-elements-grid .element-type-png .element-infos,
  202. .document-container .file-elements-grid .element-type-gif .element-infos,
  203. .document-container .file-elements-grid .element-type-bmp .element-infos
  204. {
  205. color:#ffffff;
  206. position: absolute;
  207. background: rgba(0,0,0,0.5);
  208. width:100%;
  209. bottom:0;
  210. border-radius:0 0 5px 5px;
  211. margin-left: -5px;
  212. margin-bottom: -2px;
  213. margin-right: -5px;
  214. z-index: 1;
  215. }
  216. .document-container .file-elements-grid .element-type-jpg .name-cell,
  217. .document-container .file-elements-grid .element-type-jpeg .name-cell,
  218. .document-container .file-elements-grid .element-type-png .name-cell,
  219. .document-container .file-elements-grid .element-type-gif .name-cell,
  220. .document-container .file-elements-grid .element-type-bmp .name-cell
  221. {
  222. color:#ffffff;
  223. }
  224. .document-container .view-module{
  225. position: absolute;
  226. right: 10px;
  227. }
  228. .document-container .view-module > li{
  229. cursor: pointer;
  230. display: inline-block;
  231. vertical-align: top;
  232. padding:5px;
  233. opacity: 0.8;
  234. transition: all 0.2s ease-in-out;
  235. }
  236. .document-container .view-module > li:hover{
  237. opacity: 1;
  238. transform: scale(1.1);
  239. }
  240. .document-container .view-module > li.selected{
  241. color:#007bff;
  242. }
  243. .document-container .file-elements-grid .name-cell{
  244. margin-top:5px;
  245. font-weight: bold;
  246. color: rgb(0, 123, 255);
  247. font-size: 12px;
  248. }
  249. .document-container .file-elements-grid .creator-cell,
  250. .document-container .file-elements-grid .size-cell,
  251. .document-container .file-elements-grid .updated-cell{
  252. font-size:11px;
  253. color:#cecece;
  254. }
  255. .document-container .file-elements-grid .name-cell{
  256. margin-top:5px;
  257. font-weight: bold;
  258. color: rgb(0, 123, 255);
  259. font-size: 12px;
  260. }
  261. .document-container .file-elements-grid > li .grid-container:hover {
  262. /*background-color: #f8f8f8;*/
  263. transform: scale(1.05);
  264. }
  265. .document-container .file-elements-grid .grid-container .element-rename {
  266. opacity: 0;
  267. transform: translateX(-10px);
  268. margin-left: 10px;
  269. position: absolute;
  270. cursor: pointer;
  271. color:#cecece;
  272. transition: all 0.2s ease-in-out;
  273. }
  274. .document-container .file-elements-grid > li .name-cell:hover .element-rename {
  275. transform: translateX(0);
  276. opacity:1;
  277. }
  278. .document-container .file-elements-grid > li.folder-receive-element .grid-container{
  279. background-color:#bad4ff;
  280. }
  281. .file-elements-grid .rename-input,.file-elements-grid .rename-input:focus,.file-elements-grid .rename-input:active{
  282. border:0px;
  283. padding:0;
  284. outline: none;
  285. }
  286. .document-container .file-elements-grid .element-focused .grid-container{
  287. box-shadow: 0 1px 4px #00adff;
  288. }
  289. /**/
  290. .dragging-element{
  291. opacity: 0.5;
  292. }
  293. .original-placeholder {
  294. display: table-row;
  295. opacity: 0.5;
  296. background-color: #deebff !important;
  297. }
  298. .hidden-rename {
  299. display:none;
  300. white-space:pre;
  301. }
  302. .document-container .tree-panel > ul li.folder {
  303. cursor:pointer;
  304. }
  305. .document-container .tree-panel > ul li ul {
  306. padding-left: 10px;
  307. }
  308. .document-container .file-panel {
  309. flex: 1;
  310. order: 2;
  311. border-right:1px solid #cecece;
  312. position: relative;
  313. z-index: 100;
  314. }
  315. .document-create-dropdown .dropdown-item.active,.document-create-dropdown .dropdown-item:active,
  316. .document-create-dropdown .dropdown-item:hover{
  317. background: inherit;
  318. color: inherit;
  319. }
  320. /* upload panel */
  321. .upload-state{
  322. color: #fff;
  323. margin:5px 0 0 80px;
  324. }
  325. .document-container .upload-files{
  326. color: #fff;
  327. width: 500px;
  328. margin-top:20px;
  329. max-height: 400px;
  330. overflow-y: auto;
  331. }
  332. .document-container .upload-files > li > div{
  333. width:100%;
  334. }
  335. .document-container .upload-files h5{
  336. font-weight: bold;
  337. font-size: 14px;
  338. line-height: 18px;
  339. margin:0 5px 0 0;
  340. padding:0;
  341. float:left;
  342. }
  343. .document-container .upload-files small{
  344. opacity:0.5;
  345. margin-right:5px;
  346. float:left;
  347. }
  348. .document-container .upload-files .progress {
  349. margin: 7px 0;
  350. border-radius: 5rem;
  351. border: 1px solid #fff;
  352. background-color: transparent;
  353. height: 12px;
  354. width: 100%;
  355. float:left;
  356. }
  357. .document-container .upload-files .progress .progress-bar {
  358. color: #444;
  359. background-color: #fff;
  360. }
  361. .document-container .upload-file-state{
  362. float:right;
  363. font-size: 13px;
  364. }
  365. .document-container .upload-file-state:after{
  366. clear: both;
  367. display: block;
  368. content: ' ';
  369. }
  370. .document-container .upload-file-state.success
  371. {
  372. color: #0bc60b;
  373. }
  374. .document-container .upload-file-state.error {
  375. color: #ff6b79;
  376. }
  377. .preloader-upload-container .preloader-upload-close{
  378. font-size: 30px;
  379. position: absolute;
  380. right: 20px;
  381. top: 65px;
  382. cursor: pointer;
  383. color: #d0d0d0;
  384. }
  385. .preloader-upload-container .upload-state h5{
  386. font-weight: bold;
  387. font-size: 14px !important;
  388. text-transform: uppercase;
  389. font-size: 1.25rem;
  390. color: #a9a9a9;
  391. }
  392. .drag-overlay,
  393. .preloader-upload-container {
  394. position: fixed; /* Sit on top of the page content */
  395. display: none; /* Hidden by default */
  396. width: 100%; /* Full width (cover the whole page) */
  397. height: 100%; /* Full height (cover the whole page) */
  398. top: 0;
  399. left: 0;
  400. right: 0;
  401. bottom: 0;
  402. background-color: rgba(0,0,0,0.7); /* Black background with opacity */
  403. z-index: 10000; /* Specify a stack order in case you're using a different order for other elements */
  404. cursor: pointer; /* Add a pointer on hover */
  405. }
  406. .overlay-text {
  407. position: absolute;
  408. top: 50%;
  409. left: 50%;
  410. font-size: 30px;
  411. color: white;
  412. transform: translate(-50%,-50%);
  413. -ms-transform: translate(-50%,-50%);
  414. z-index: 10000;
  415. }
  416. .overlay-icon {
  417. position: absolute;
  418. top: 52%;
  419. left: 49%;
  420. font-size: 60px;
  421. font-weight: lighter;
  422. color: #ffc700;
  423. transform: translate(-49%,-52%);
  424. -ms-transform: translate(-49%,-52%);
  425. z-index: 10000;
  426. animation: floating 1.5s ease-in-out infinite;
  427. }
  428. .upload-button > div > i.far.fa-file-alt {
  429. color: #007bff;
  430. }
  431. .file-form input.label-required {
  432. background: rgba(229, 35, 37, 0.25);
  433. }
  434. .file-form input.label-required::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  435. color: red;
  436. opacity: 1; /* Firefox */
  437. }
  438. .file-form input.label-required:-ms-input-placeholder { /* Internet Explorer 10-11 */
  439. color: red;
  440. }
  441. .file-form input.label-required::-ms-input-placeholder { /* Microsoft Edge */
  442. color: red;
  443. }
  444. @keyframes floating {
  445. from { transform: translate(0, 0px); }
  446. 50% { transform: translate(0, 15px); }
  447. to { transform: translate(0, -0px); }
  448. }
  449. .document-container .file-panel.drag-over {
  450. box-shadow: 0 0 5px rgba(0,0,0,0.5);
  451. }
  452. .doc-search-container {
  453. position: relative;
  454. width: 50%;
  455. }
  456. .doc-search-container .btn-search {
  457. position: absolute;
  458. right: 10px;
  459. top: 5px;
  460. bottom: 0;
  461. height: 25px;
  462. margin: auto;
  463. font-size: 14px;
  464. cursor: pointer;
  465. color: #a0a0a0;
  466. z-index: 4;
  467. transition: all 0.15s ease-in;
  468. }
  469. .document-container .search-clear {
  470. opacity: 0;
  471. transform: scale(0);
  472. position: absolute;
  473. right: 33px;
  474. top: 12px;
  475. bottom: 0;
  476. height: 25px;
  477. margin: auto;
  478. font-size: 14px;
  479. cursor: pointer;
  480. color: #a0a0a0;
  481. z-index: 4;
  482. transition: all 0.15s ease-in;
  483. }
  484. .doc-search-container.typing .search-clear {
  485. opacity: 1;
  486. transform: scale(1);
  487. }
  488. .input-group-append {
  489. z-index: 5;
  490. }
  491. .file-panel .breadcrumb-module {
  492. padding: 0 15px 0 15px;
  493. margin: 5px 0;
  494. color:#666666;
  495. }
  496. .file-panel .breadcrumb-module > ul li:not(:last-of-type) {
  497. background-image: url(../img/breadcrumb.svg);
  498. }
  499. .file-panel .breadcrumb-module > ul li{
  500. display: inline-block;
  501. padding: 8px 15px 0 0;
  502. margin: 0 0 0 5px;
  503. background-repeat: no-repeat;
  504. background-position: right center;
  505. height: 40px;
  506. background-size: auto 20px;
  507. cursor: pointer;
  508. }
  509. .file-panel .search-module {
  510. padding: 0 15px 0 15px;
  511. margin:0px 0 10px 0 ;
  512. color:#aeaeae;
  513. position: relative;
  514. }
  515. .file-panel .search-module .doc-search-container input {
  516. width:100%;
  517. border-radius: 2em;
  518. }
  519. .document-container .detail-panel {
  520. width: 20%;
  521. overflow-y: auto;
  522. order:3;
  523. border-right:1px solid #cecece;
  524. }
  525. .document-container .detail-panel::-webkit-scrollbar {
  526. width: 6px;
  527. height: 6px;
  528. }
  529. .document-container .detail-panel::-webkit-scrollbar-button {
  530. width: 0px;
  531. height: 0px;
  532. }
  533. .document-container .detail-panel::-webkit-scrollbar-thumb {
  534. background: #cecece;
  535. border: 0px none #ffffff;
  536. border-radius: 50px;
  537. }
  538. .document-container .detail-panel::-webkit-scrollbar-thumb:hover {
  539. background: #707070;
  540. }
  541. .document-container .detail-panel::-webkit-scrollbar-thumb:active {
  542. background: #949494;
  543. }
  544. .document-container .detail-panel::-webkit-scrollbar-track {
  545. background: #ffffff;
  546. border: 0px none #ffffff;
  547. border-radius: 50px;
  548. }
  549. .document-container .detail-panel::-webkit-scrollbar-track:hover {
  550. background: #d4d4d4;
  551. }
  552. .document-container .detail-panel::-webkit-scrollbar-track:active {
  553. background: #d3d3d3;
  554. }
  555. .document-container .detail-panel::-webkit-scrollbar-corner {
  556. background: transparent;
  557. }
  558. .detail-panel h1{
  559. font-size: 18px;
  560. margin: 5px 0;
  561. }
  562. .document-container .document-add-element{
  563. display:inline-block;
  564. margin-left:10px;
  565. }
  566. .document-container .document-add-element > button{
  567. border-radius: 2em;
  568. padding-top: 4px;
  569. padding-bottom: 4px;
  570. }
  571. .documents-settings {
  572. position: absolute;
  573. right: 10px;
  574. }
  575. .file-module {
  576. border-top: 1px solid #cecece;
  577. /*100vh - 50px (header) - 50px (footer) - 92px (breadcrumb + search)*/
  578. height: calc(100vh - 192px);
  579. overflow-y: auto;
  580. }
  581. .file-module > table {
  582. width:100%;
  583. }
  584. .file-module > table th,
  585. .file-module > table td{
  586. padding: 5px 10px;
  587. }
  588. .file-module > table thead th {
  589. padding: 10px;
  590. cursor: pointer;
  591. transition: all 0.1s ease-in-out;
  592. }
  593. .file-module > table thead th:hover {
  594. color: #8c8c8c;
  595. background-color: #ddedff;
  596. }
  597. .file-module > table thead {
  598. color:#b2b2b2;
  599. font-size: 0.75em;
  600. }
  601. .file-module > table thead tr {
  602. border-bottom:1px solid #eaeaea;
  603. }
  604. .file-module > table thead tr th.name-head,
  605. .file-module > table tbody tr td.name-cell {
  606. padding-left: 20px;
  607. }
  608. .file-module > table tbody tr td.name-cell {
  609. font-size: 0.8em;
  610. width: 350px;
  611. max-width: 350px;
  612. text-overflow: ellipsis;
  613. overflow: hidden;
  614. white-space: nowrap;
  615. }
  616. .file-module > table tbody tr td.size-cell {
  617. width: 100px;
  618. font-size: 11px;
  619. }
  620. .file-module > table tbody tr td.creator-cell,
  621. .file-module > table tbody tr td.firm-cell,
  622. .file-module > table tbody tr td.updated-cell {
  623. width: 150px;
  624. font-size: 11px;
  625. }
  626. .file-module > table tbody tr {
  627. border-bottom:1px solid #eaeaea;
  628. color:#595959;
  629. }
  630. .file-module > table tbody tr.ui-sortable-placeholder {
  631. display: none;
  632. }
  633. .detail-panel .detail-thumbnail{
  634. background: url(../img/default-image.svg) no-repeat center center #f5f4f4;
  635. height:250px;
  636. text-align: center;
  637. background-size: auto 140px;
  638. }
  639. .detail-panel .detail-thumbnail .thumbnail-preloader{
  640. font-size: 40px;
  641. height:250px;
  642. background-color: #f5f4f4;
  643. padding-top: 100px;
  644. opacity:0;
  645. box-sizing: border-box;
  646. color:#cecece;
  647. transition: opacity 0.2s ease-in-out;
  648. }
  649. .detail-panel .detail-thumbnail .thumbnail-preloader.show{
  650. opacity:1;
  651. transition:none;
  652. }
  653. .document-container .detail-buttons{
  654. padding: 5px 10px;
  655. }
  656. .document-container .detail-buttons li .btn{
  657. width:100%;
  658. }
  659. .detail-panel h1{
  660. padding: 5px 10px;
  661. color: #333333;
  662. word-break: break-all;
  663. }
  664. .detail-panel small.informations {
  665. display: inline-block;
  666. width: 100%;
  667. color: #bebebe;
  668. padding: 5px 10px;
  669. }
  670. .document-container .file-editor{
  671. position: absolute;
  672. background: #fefefe;
  673. width: 100%;
  674. height: calc(100vh - 192px);
  675. z-index: 10;
  676. }
  677. .document-container .file-editor .file-editor-input{
  678. width: 100%;
  679. height:500px;
  680. padding:15px;
  681. color:#222222;
  682. outline: none;
  683. }
  684. .document-container .btn-editor-save,.btn-editor-cancel{
  685. border-radius: 0px;
  686. float: right;
  687. }
  688. .document-container .file-editor .file-editor-header{
  689. background: #f5f4f4;
  690. }
  691. .document-container .file-editor .file-editor-name{
  692. margin-left: 5px;
  693. width:200px;
  694. font-weight: bold;
  695. height: 38px;
  696. opacity:0.5;
  697. transition: opacity 0.2s ease-in-out;
  698. outline: none;
  699. background: transparent;
  700. border:0;
  701. }
  702. .document-container .file-editor .file-editor-name:hover{
  703. opacity:1;
  704. }
  705. @keyframes pop{
  706. 50% {transform: scale(1.2);}
  707. }
  708. .preloader-upload {
  709. position: absolute;
  710. top: calc(30% - 20px);
  711. left: calc(50% - 250px);
  712. }
  713. @keyframes loader {
  714. 0% { left: -100px }
  715. 100% { left: 110%; }
  716. }
  717. .preloader-upload-box {
  718. width: 50px;
  719. height: 50px;
  720. background: #ffc700;
  721. animation: animate .5s linear infinite;
  722. position: absolute;
  723. top: 0;
  724. left: 0;
  725. border-radius: 3px;
  726. }
  727. @keyframes animate {
  728. 17% { border-bottom-right-radius: 3px; }
  729. 25% { transform: translateY(9px) rotate(22.5deg); }
  730. 50% {
  731. transform: translateY(18px) scale(1,.9) rotate(45deg) ;
  732. border-bottom-right-radius: 40px;
  733. }
  734. 75% { transform: translateY(9px) rotate(67.5deg); }
  735. 100% { transform: translateY(0) rotate(90deg); }
  736. }
  737. .preloader-upload-shadow {
  738. width: 50px;
  739. height: 5px;
  740. background: #000;
  741. opacity: 0.1;
  742. position: absolute;
  743. top: 59px;
  744. left: 0;
  745. border-radius: 50%;
  746. animation: shadow .5s linear infinite;
  747. }
  748. @keyframes shadow {
  749. 50% {
  750. transform: scale(1.2,1);
  751. }
  752. }
  753. @media (max-width: 768px){
  754. .module-document {
  755. overflow: auto;
  756. }
  757. .document-container{
  758. display: block;
  759. }
  760. .document-container .detail-panel {
  761. display: block!important;
  762. width: 100%;
  763. }
  764. .document-container .detail-thumbnail {
  765. height:200px;
  766. }
  767. .footer{
  768. display: none;
  769. }
  770. }