main.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .navigation-edit-button{
  2. opacity: 0.5;
  3. transition: all 0.2s ease-in-out;
  4. }
  5. .navigation-edit-button:hover{
  6. opacity: 1;
  7. }
  8. .navigation-edit-item-button{
  9. padding-left: 5px;
  10. }
  11. .navigation-edit-item-button i{
  12. font-size: 0.75em;
  13. transition: all 0.2s ease-in-out;
  14. }
  15. .navigation-edit-item-button:hover i{
  16. transform: scale(1.5);
  17. }
  18. .navigation-edit-button > a,
  19. .navigation-validate-button > a,
  20. .navigation-plus-button > a {
  21. text-align: right;
  22. }
  23. .navigation-plus-button{
  24. opacity: 0.5;
  25. transition : all 0.2s ease-in-out;
  26. display: none;
  27. }
  28. .navigation-plus-button:hover{
  29. opacity: 1;
  30. }
  31. .navigation-validate-button{
  32. opacity: 0.5;
  33. transition : all 0.2s ease-in-out;
  34. display:none;
  35. }
  36. .navigation-validate-button:hover{
  37. opacity: 1;
  38. }
  39. .navigation-sortable-placeholder{
  40. width: 0px;
  41. border: 2px solid #00b6ff;
  42. }
  43. .menuitem-form .navigation-options{
  44. text-align: center;
  45. font-size: 0.75em;
  46. }
  47. .nav-option-container {
  48. height: 20px;
  49. width: 100%;
  50. display: flex;
  51. margin: 10px 0;
  52. }
  53. .nav-option-container > label {
  54. flex: 1 0 auto;
  55. text-align: left;
  56. margin: auto;
  57. cursor: pointer;
  58. }
  59. .nav-option-container > label.check-component {
  60. flex: none;
  61. margin-right: 5px;
  62. }
  63. .nav-option-container > input {
  64. width: auto;
  65. margin: auto 10px;
  66. cursor: pointer;
  67. }
  68. .nav-option-container > input:focus {
  69. box-shadow: none;
  70. }
  71. .nav-select-container {
  72. display: flex;
  73. }
  74. .nav-select-container label {
  75. margin: auto;
  76. }
  77. .nav-select-container select {
  78. display: inline-block;
  79. width: 75%;
  80. }
  81. .navbar-main {
  82. display:none;
  83. }
  84. /* MEDIA QUERIES */
  85. @media (max-width: 1000px) {
  86. #mainMenu .navigation-menu .navigation-edit-button i,
  87. #mainMenu .navigation-menu .navigation-validate-button i,
  88. #mainMenu .navigation-menu .navigation-plus-button i {
  89. display: inline-block;
  90. }
  91. }
  92. @media (max-width: 767px) {
  93. }