You are here

media_directories_ui.browser.css in Media Directories 3.x

.media-directories-library-tree {
  width: calc(25% - 1px);
  position: absolute;
  top: 0;
  bottom: 0;
  border-right: 1px solid #ccc;
  background: #fcfcfa;
}

.vakata-context {
  z-index: 1260;
}

.browser {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  height: 100%;
  width: 100%;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.browser > div {
  box-sizing: border-box;
}

.browser .form-actions {
  margin: 0 1em;
}

.browser--header {
  width: 100%;
  background: #e1e2dc;
  border-bottom: 1px solid #ccc;
  align-self: self-start;
}

.browser--body {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
}

.browser--listing {
  width: 100%;
  flex-grow: 1;
  padding: 1em;
}

.browser--listing .form-actions {
  display: none;
}

.browser-toolbar {
  display: flex;
  justify-content: space-between;
  margin: 0 0.75em;
}

.browser-toolbar__items {
  display: flex;
}

.browser-toolbar__item {
  margin-right: 1em;
  margin-bottom: 0.75em;
  margin-top: 0.75em;
  display: flex;
  align-items: center;
}

.media-browser--full .browser {
  height: 67vh;
}

.jstree-wholerow-ul {
  width: 100%;
}

.js-form-item-directory {
  display: none;
}

File

modules/media_directories_ui/css/media_directories_ui.browser.css
View source
  1. .media-directories-library-tree {
  2. width: calc(25% - 1px);
  3. position: absolute;
  4. top: 0;
  5. bottom: 0;
  6. border-right: 1px solid #ccc;
  7. background: #fcfcfa;
  8. }
  9. .vakata-context {
  10. z-index: 1260;
  11. }
  12. .browser {
  13. display: flex;
  14. flex-wrap: wrap;
  15. box-sizing: border-box;
  16. height: 100%;
  17. width: 100%;
  18. -webkit-touch-callout: none; /* iOS Safari */
  19. -webkit-user-select: none; /* Safari */
  20. -khtml-user-select: none; /* Konqueror HTML */
  21. -moz-user-select: none; /* Firefox */
  22. -ms-user-select: none; /* Internet Explorer/Edge */
  23. user-select: none;
  24. }
  25. .browser > div {
  26. box-sizing: border-box;
  27. }
  28. .browser .form-actions {
  29. margin: 0 1em;
  30. }
  31. .browser--header {
  32. width: 100%;
  33. background: #e1e2dc;
  34. border-bottom: 1px solid #ccc;
  35. align-self: self-start;
  36. }
  37. .browser--body {
  38. display: flex;
  39. flex-wrap: nowrap;
  40. align-items: stretch;
  41. align-self: stretch;
  42. width: 100%;
  43. }
  44. .browser--listing {
  45. width: 100%;
  46. flex-grow: 1;
  47. padding: 1em;
  48. }
  49. .browser--listing .form-actions {
  50. display: none;
  51. }
  52. .browser-toolbar {
  53. display: flex;
  54. justify-content: space-between;
  55. margin: 0 0.75em;
  56. }
  57. .browser-toolbar__items {
  58. display: flex;
  59. }
  60. .browser-toolbar__item {
  61. margin-right: 1em;
  62. margin-bottom: 0.75em;
  63. margin-top: 0.75em;
  64. display: flex;
  65. align-items: center;
  66. }
  67. .media-browser--full .browser {
  68. height: 67vh;
  69. }
  70. .jstree-wholerow-ul {
  71. width: 100%;
  72. }
  73. .js-form-item-directory {
  74. display: none;
  75. }