You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

icons.css 9.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. [class^="icon-"], [class*=" icon-"] {
  2. background-repeat: no-repeat;
  3. background-position: center;
  4. min-width: 16px;
  5. min-height: 16px;
  6. }
  7. /* general assets */
  8. .icon-breadcrumb {
  9. background-image: url('../img/breadcrumb.svg?v=1');
  10. }
  11. .loading,
  12. .loading-small,
  13. .icon-loading,
  14. .icon-loading-dark,
  15. .icon-loading-small,
  16. .icon-loading-small-dark {
  17. position: relative;
  18. }
  19. .loading:after,
  20. .loading-small:after,
  21. .icon-loading:after,
  22. .icon-loading-dark:after,
  23. .icon-loading-small:after,
  24. .icon-loading-small-dark:after {
  25. z-index: 2;
  26. content: "";
  27. height: 32px;
  28. width: 32px;
  29. margin: -17px 0 0 -17px;
  30. position: absolute;
  31. top: 50%;
  32. left: 50%;
  33. border-radius: 100%;
  34. -webkit-animation: rotate .8s infinite linear;
  35. animation: rotate .8s infinite linear;
  36. -webkit-transform-origin: center;
  37. -ms-transform-origin: center;
  38. transform-origin: center;
  39. }
  40. .loading:after,
  41. .loading-small:after,
  42. .icon-loading:after,
  43. .icon-loading-dark:after,
  44. .icon-loading-small:after,
  45. .icon-loading-small-dark:after {
  46. border: 2px solid rgba(150, 150, 150, .5);
  47. border-top-color: rgb(100, 100, 100);
  48. }
  49. .icon-loading-dark:after,
  50. .icon-loading-small-dark:after {
  51. border: 2px solid rgba(187, 187, 187, .5);
  52. border-top-color: #bbb;
  53. }
  54. .icon-loading-small:after,
  55. .icon-loading-small-dark:after {
  56. height: 16px;
  57. width: 16px;
  58. margin: -9px 0 0 -9px;
  59. }
  60. /* Css replaced elements don't have ::after nor ::before */
  61. img.icon-loading, object.icon-loading, video.icon-loading, button.icon-loading, textarea.icon-loading, input.icon-loading, select.icon-loading {
  62. background-image: url("../img/loading.gif");
  63. }
  64. img.icon-loading-dark, object.icon-loading-dark, video.icon-loading-dark, button.icon-loading-dark, textarea.icon-loading-dark, input.icon-loading-dark, select.icon-loading-dark {
  65. background-image: url("../img/loading-dark.gif");
  66. }
  67. img.icon-loading-small, object.icon-loading-small, video.icon-loading-small, button.icon-loading-small, textarea.icon-loading-small, input.icon-loading-small, select.icon-loading-small {
  68. background-image: url("../img/loading-small.gif");
  69. }
  70. img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading-small-dark, button.icon-loading-small-dark, textarea.icon-loading-small-dark, input.icon-loading-small-dark, select.icon-loading-small-dark {
  71. background-image: url("../img/loading-small-dark.gif");
  72. }
  73. @-webkit-keyframes rotate {
  74. from {
  75. -webkit-transform: rotate(0deg);
  76. transform: rotate(0deg);
  77. }
  78. to {
  79. -webkit-transform: rotate(360deg);
  80. transform: rotate(360deg);
  81. }
  82. }
  83. @keyframes rotate {
  84. from {
  85. -webkit-transform: rotate(0deg);
  86. transform: rotate(0deg);
  87. }
  88. to {
  89. -webkit-transform: rotate(360deg);
  90. transform: rotate(360deg);
  91. }
  92. }
  93. .icon-32 {
  94. background-size: 32px !important;
  95. }
  96. /* action icons */
  97. .icon-add {
  98. background-image: url('../img/actions/add.svg?v=1');
  99. }
  100. .icon-audio {
  101. background-image: url('../img/actions/audio.svg?v=1');
  102. }
  103. .icon-audio-white {
  104. background-image: url('../img/actions/audio-white.svg?v=1');
  105. }
  106. .icon-caret {
  107. background-image: url('../img/actions/caret.svg?v=1');
  108. }
  109. .icon-caret-dark {
  110. background-image: url('../img/actions/caret-dark.svg?v=1');
  111. }
  112. .icon-checkmark {
  113. background-image: url('../img/actions/checkmark.svg?v=1');
  114. }
  115. .icon-checkmark-white {
  116. background-image: url('../img/actions/checkmark-white.svg?v=1');
  117. }
  118. .icon-checkmark-color {
  119. background-image: url('../img/actions/checkmark-color.svg?v=1');
  120. }
  121. .icon-close {
  122. background-image: url('../img/actions/close.svg?v=1');
  123. }
  124. .icon-comment {
  125. background-image: url('../img/actions/comment.svg?v=1');
  126. }
  127. .icon-confirm {
  128. background-image: url('../img/actions/confirm.svg?v=2');
  129. }
  130. .icon-confirm-white {
  131. background-image: url('../img/actions/confirm-white.svg?v=2');
  132. }
  133. .icon-delete,
  134. .icon-delete.no-permission:hover,
  135. .icon-delete.no-permission:focus {
  136. background-image: url('../img/actions/delete.svg?v=1');
  137. }
  138. .icon-delete:hover,
  139. .icon-delete:focus {
  140. background-image: url('../img/actions/delete-hover.svg?v=1');
  141. }
  142. .icon-delete-white {
  143. background-image: url('../img/actions/delete-white.svg?v=1');
  144. }
  145. .icon-details {
  146. background-image: url('../img/actions/details.svg?v=1');
  147. }
  148. .icon-download {
  149. background-image: url('../img/actions/download.svg?v=1');
  150. }
  151. .icon-download-white {
  152. background-image: url('../img/actions/download-white.svg?v=1');
  153. }
  154. .icon-edit {
  155. background-image: url('../img/actions/edit.svg?v=1');
  156. }
  157. .icon-error {
  158. background-image: url('../img/actions/error.svg?v=1');
  159. }
  160. .icon-error-white {
  161. background-image: url('../img/actions/error-white.svg?v=1');
  162. }
  163. .icon-error-color {
  164. background-image: url('../img/actions/error-color.svg?v=1');
  165. }
  166. .icon-external {
  167. background-image: url('../img/actions/external.svg?v=1');
  168. }
  169. .icon-fullscreen {
  170. background-image: url('../img/actions/fullscreen.svg?v=1');
  171. }
  172. .icon-fullscreen-white {
  173. background-image: url('../img/actions/fullscreen-white.svg?v=1');
  174. }
  175. .icon-history {
  176. background-image: url('../img/actions/history.svg?v=1');
  177. }
  178. .icon-info {
  179. background-image: url('../img/actions/info.svg?v=1');
  180. }
  181. .icon-info-white {
  182. background-image: url('../img/actions/info-white.svg?v=1');
  183. }
  184. .icon-logout {
  185. background-image: url('../img/actions/logout.svg?v=1');
  186. }
  187. .icon-mail {
  188. background-image: url('../img/actions/mail.svg?v=1');
  189. }
  190. .icon-menu {
  191. background-image: url('../img/actions/menu.svg?v=1');
  192. }
  193. .icon-more {
  194. background-image: url('../img/actions/more.svg?v=1');
  195. }
  196. .icon-more-white {
  197. background-image: url('../img/actions/more-white.svg?v=1');
  198. }
  199. .icon-password {
  200. background-image: url('../img/actions/password.svg?v=1');
  201. }
  202. .icon-pause {
  203. background-image: url('../img/actions/pause.svg?v=1');
  204. }
  205. .icon-pause-big {
  206. background-image: url('../img/actions/pause-big.svg?v=1');
  207. }
  208. .icon-play {
  209. background-image: url('../img/actions/play.svg?v=1');
  210. }
  211. .icon-play-add {
  212. background-image: url('../img/actions/play-add.svg?v=1');
  213. }
  214. .icon-play-big {
  215. background-image: url('../img/actions/play-big.svg?v=1');
  216. }
  217. .icon-play-next {
  218. background-image: url('../img/actions/play-next.svg?v=1');
  219. }
  220. .icon-play-previous {
  221. background-image: url('../img/actions/play-previous.svg?v=1');
  222. }
  223. .icon-public {
  224. background-image: url('../img/actions/public.svg?v=1');
  225. }
  226. .icon-rename {
  227. background-image: url('../img/actions/rename.svg?v=1');
  228. }
  229. .icon-search {
  230. background-image: url('../img/actions/search.svg?v=1');
  231. }
  232. .icon-search-white {
  233. background-image: url('../img/actions/search-white.svg?v=1');
  234. }
  235. .icon-settings {
  236. background-image: url('../img/actions/settings.svg?v=1');
  237. }
  238. .icon-share {
  239. background-image: url('../img/actions/share.svg?v=1');
  240. }
  241. .icon-shared {
  242. background-image: url('../img/actions/shared.svg?v=1');
  243. }
  244. .icon-sound {
  245. background-image: url('../img/actions/sound.svg?v=1');
  246. }
  247. .icon-sound-off {
  248. background-image: url('../img/actions/sound-off.svg?v=1');
  249. }
  250. .icon-favorite {
  251. background-image: url('../img/actions/star-dark.svg?v=1');
  252. }
  253. .icon-star,
  254. .icon-starred:hover,
  255. .icon-starred:focus {
  256. background-image: url('../img/actions/star.svg?v=1');
  257. }
  258. .icon-starred,
  259. .icon-star:hover,
  260. .icon-star:focus {
  261. background-image: url('../img/actions/starred.svg?v=1');
  262. }
  263. .icon-tag {
  264. background-image: url('../img/actions/tag.svg?v=1');
  265. }
  266. .icon-toggle {
  267. background-image: url('../img/actions/toggle.svg?v=1');
  268. }
  269. .icon-triangle-e {
  270. background-image: url('../img/actions/triangle-e.svg?v=1');
  271. }
  272. .icon-triangle-n {
  273. background-image: url('../img/actions/triangle-n.svg?v=1');
  274. }
  275. .icon-triangle-s {
  276. background-image: url('../img/actions/triangle-s.svg?v=1');
  277. }
  278. .icon-upload {
  279. background-image: url('../img/actions/upload.svg?v=1');
  280. }
  281. .icon-upload-white {
  282. background-image: url('../img/actions/upload-white.svg?v=1');
  283. }
  284. .icon-user {
  285. background-image: url('../img/actions/user.svg?v=1');
  286. }
  287. .icon-video {
  288. background-image: url('../img/actions/video.svg?v=1');
  289. }
  290. .icon-video-white {
  291. background-image: url('../img/actions/video-white.svg?v=1');
  292. }
  293. .icon-view-close {
  294. background-image: url('../img/actions/view-close.svg?v=1');
  295. }
  296. .icon-view-download {
  297. background-image: url('../img/actions/view-download.svg?v=1');
  298. }
  299. .icon-view-next {
  300. background-image: url('../img/actions/view-next.svg?v=1');
  301. }
  302. .icon-view-pause {
  303. background-image: url('../img/actions/view-pause.svg?v=1');
  304. }
  305. .icon-view-play {
  306. background-image: url('../img/actions/view-play.svg?v=1');
  307. }
  308. .icon-view-previous {
  309. background-image: url('../img/actions/view-previous.svg?v=1');
  310. }
  311. /* places icons */
  312. .icon-calendar-dark {
  313. background-image: url('../img/places/calendar-dark.svg?v=1');
  314. }
  315. .icon-contacts-dark {
  316. background-image: url('../img/places/contacts-dark.svg?v=1');
  317. }
  318. .icon-files {
  319. background-image: url('../img/places/files.svg?v=1');
  320. }
  321. .icon-files-dark {
  322. background-image: url('../img/places/files-dark.svg?v=1');
  323. }
  324. .icon-file,
  325. .icon-filetype-text {
  326. background-image: url('../img/filetypes/text.svg?v=1');
  327. }
  328. .icon-folder,
  329. .icon-filetype-folder {
  330. background-image: url('../img/filetypes/folder.svg?v=1');
  331. }
  332. .icon-filetype-folder-drag-accept {
  333. background-image: url('../img/filetypes/folder-drag-accept.svg?v=1')!important;
  334. }
  335. .icon-home {
  336. background-image: url('../img/places/home.svg?v=1');
  337. }
  338. .icon-link {
  339. background-image: url('../img/places/link.svg?v=1');
  340. }
  341. .icon-music {
  342. background-image: url('../img/places/music.svg?v=1');
  343. }
  344. .icon-picture {
  345. background-image: url('../img/places/picture.svg?v=1');
  346. }
  347. .icon-clippy {
  348. background-image: url('../img/actions/clippy.svg?v=1');
  349. }