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.
 
 
 
 
 
 

155 line
2.0 KiB

  1. /* appframe header */
  2. .appframe {
  3. padding-top: 15px;
  4. }
  5. .appframe-titlebar {
  6. border-bottom: 1px solid #c7c7c7;
  7. }
  8. .titlebar-item {
  9. padding-top: 10px;
  10. padding-bottom: 10px;
  11. }
  12. .titlebar-item h2 {
  13. display: inline-block;
  14. font-weight: normal;
  15. white-space: nowrap;
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. margin: 0px;
  19. }
  20. .titlebar-item.text-left {
  21. }
  22. .titlebar-left-item {
  23. float: left;
  24. width: 30px;
  25. }
  26. h2.titlebar-left-item {
  27. margin-top: -2px !important;
  28. }
  29. .titlebar-center-item {
  30. float: left;
  31. width: 90%;
  32. }
  33. @media (max-width: 768px) {
  34. .titlebar-center-item {
  35. width: 80%;
  36. }
  37. .titlebar-item h2 {
  38. font-size: 20px;
  39. }
  40. }
  41. .appframe-header {
  42. margin-bottom: 20px;
  43. }
  44. .appframe-toolbar {
  45. margin-bottom: 0px;
  46. }
  47. .appframe-header .status-bar {
  48. text-align: right;
  49. }
  50. /* fixed navbar in appframe */
  51. .appframe .navbar {
  52. margin-left: -15px;
  53. margin-right: -15px;
  54. margin-bottom: 0px;
  55. border-radius: 0px;
  56. border-bottom: 1px solid #e7e7e7;
  57. min-height: 51px;
  58. }
  59. .appframe .navbar-form select,
  60. .appframe .navbar-form input,
  61. .appframe .navbar-form button,
  62. .appframe .navbar-form label {
  63. margin-bottom: 5px;
  64. }
  65. .appframe .navbar-form {
  66. margin-bottom: 2px;
  67. width: 100%;
  68. }
  69. .appframe-iconbar, .appframe-form {
  70. border-bottom: 1px solid #c7c7c7;
  71. }
  72. .appframe-form {
  73. padding: 5px 0px;
  74. }
  75. .appframe-form input, .appframe-form select, .appframe-form label {
  76. font-size: 90%;
  77. padding: 4px;
  78. margin: 3px 0px;
  79. }
  80. .appframe-form .form-group {
  81. margin-bottom: 0px;
  82. }
  83. .appframe-form .form-control {
  84. height: 28px;
  85. }
  86. .appframe-iconbar {
  87. background-color: #f2f2f2;
  88. }
  89. .iconbar {
  90. display: inline-block;
  91. padding: 9px 0px;
  92. }
  93. .iconbar ul {
  94. list-style: none;
  95. margin: 0 0 0 0;
  96. padding: 0 0 0 0;
  97. }
  98. .iconbar li {
  99. display: inline-block;
  100. padding-left: 4px;
  101. padding-right: 4px;
  102. }
  103. .iconbar i {
  104. margin-top: 4px;
  105. margin-right: 4px;
  106. color: #888;
  107. cursor: pointer;
  108. font-size: 16px;
  109. }
  110. .iconbar i:hover {
  111. color: #000;
  112. }
  113. .iconbar i:active {
  114. color: #5bc0de;
  115. }
  116. .iconbar .appframe-iconbar-active i {
  117. font-weight: bold;
  118. color: orange;
  119. }
  120. .appframe-footer {
  121. margin-top: 15px;
  122. }