theme.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*!
  2. * bootstrap-fileinput v4.3.7
  3. * http://plugins.krajee.com/file-input
  4. *
  5. * Krajee Explorer theme style for bootstrap-fileinput. Load this theme file after loading `fileinput.css`.
  6. *
  7. * Author: Kartik Visweswaran
  8. * Copyright: 2014 - 2017, Kartik Visweswaran, Krajee.com
  9. *
  10. * Licensed under the BSD 3-Clause
  11. * https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
  12. */
  13. .theme-explorer .file-preview .table {
  14. margin: 0;
  15. }
  16. .theme-explorer .explorer-frame td {
  17. vertical-align: middle;
  18. text-align: left;
  19. }
  20. .theme-explorer .file-preview-text {
  21. display: inline-block;
  22. color: #428bca;
  23. border: 1px solid #ddd;
  24. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  25. outline: none;
  26. padding: 8px;
  27. resize: none;
  28. }
  29. .theme-explorer .file-preview-html {
  30. display: inline-block;
  31. border: 1px solid #ddd;
  32. padding: 8px;
  33. overflow: auto;
  34. }
  35. .theme-explorer .explorer-frame .file-preview-other {
  36. text-align: center;
  37. }
  38. .theme-explorer .file-other-icon {
  39. font-size: 4.2em;
  40. }
  41. .theme-explorer .explorer-frame .kv-file-content {
  42. width: 80px;
  43. height: 80px;
  44. padding: 5px;
  45. text-align: center;
  46. }
  47. .theme-explorer .file-actions-cell {
  48. width: 100px;
  49. padding: 0;
  50. }
  51. .theme-explorer .file-thumb-progress .progress {
  52. display: block;
  53. margin-top: 5px;
  54. }
  55. .theme-explorer .file-thumb-progress .progress, .theme-explorer .file-thumb-progress .progress-bar {
  56. height: 13px;
  57. font-size: 11px;
  58. line-height: 13px;
  59. }
  60. .theme-explorer .file-actions-cell {
  61. position: relative;
  62. }
  63. .theme-explorer .file-upload-indicator, .theme-explorer .file-drag-handle {
  64. position: absolute;
  65. text-align: center;
  66. top: 0;
  67. right: 0;
  68. padding-left: 5px;
  69. padding-right: 2px;
  70. border-right: none;
  71. border-top: none;
  72. border-left: 1px solid #8a6d3b;
  73. border-bottom: 1px solid #8a6d3b;
  74. border-bottom-left-radius: 11px;
  75. font-size: 12px;
  76. }
  77. .theme-explorer .explorer-caption {
  78. display: block;
  79. color: #777;
  80. }
  81. .theme-explorer .file-actions {
  82. text-align: center;
  83. }
  84. .theme-explorer .kvsortable-ghost {
  85. opacity: 0.6;
  86. background: #e1edf7;
  87. border: 2px solid #a1abff;
  88. }
  89. @media only screen and (max-device-width: 500px) {
  90. .theme-explorer .file-upload-indicator, .theme-explorer .file-drag-handle {
  91. border-radius: 0;
  92. border: 1px solid #8a6d3b;
  93. margin-bottom: 5px;
  94. }
  95. .theme-explorer .explorer-caption {
  96. display: block;
  97. white-space: nowrap;
  98. overflow: hidden;
  99. text-overflow: ellipsis;
  100. width: 160px;
  101. text-align: left;
  102. color: #777;
  103. }
  104. }
  105. .theme-explorer .file-upload-indicator {
  106. font-size: 13px;
  107. padding-left: 6px;
  108. background-color: #fcf8e3;
  109. border-color: #faebcc;
  110. }
  111. .theme-explorer .file-drag-handle {
  112. right: -2px;
  113. background-color: #d9edf7;
  114. border-color: #bce8f1;
  115. }
  116. .theme-explorer .file-preview-error .file-upload-indicator {
  117. background-color: #f2dede;
  118. border-color: #ebccd1;
  119. }
  120. .theme-explorer .file-preview-success .file-upload-indicator {
  121. background-color: #dff0d8;
  122. border-color: #d6e9c6;
  123. }
  124. .theme-explorer .file-preview-loading .file-upload-indicator {
  125. background-color: #e5e5e5;
  126. border-color: #777;
  127. }