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.

174 lines
2.9 KiB

7 years ago
  1. /* 버튼그룹 */
  2. .ax-button-group {
  3. display: table;
  4. width: 100%;
  5. min-height: 40px;
  6. .left,
  7. .right {
  8. display: table-cell;
  9. vertical-align: bottom;
  10. padding: 0 5px 10px 5px;
  11. h1, h2, h3, h4, h5, h6 {
  12. line-height: 26px;
  13. }
  14. }
  15. .left {
  16. text-align:left;
  17. }
  18. .right {
  19. text-align:right;
  20. }
  21. &.ax-button-group-bottom {
  22. .left, .right {
  23. padding: 0px;
  24. vertical-align:middle;
  25. }
  26. &.sm {
  27. min-height: 30px;
  28. .left, .right {
  29. padding: 0 5px 7px 5px;
  30. }
  31. }
  32. .pagination {
  33. margin: 0px;
  34. }
  35. }
  36. }
  37. [data-ax-tbl] {
  38. font-size: 0.9em;
  39. background: #fff;
  40. border-top: 1px solid #D8D8D8;
  41. border-right: 1px solid #D8D8D8;
  42. border-left: 1px solid #D8D8D8;
  43. position: relative;
  44. [data-ax-tr] {
  45. border-bottom: 1px solid #D8D8D8;
  46. &:after {
  47. @include admin_clearfix;
  48. }
  49. [data-ax-td] {
  50. float: left;
  51. display: table;
  52. table-layout: fixed;
  53. width: 300px;
  54. vertical-align: top;
  55. min-height: 40px;
  56. &.width-auto {
  57. width:auto;
  58. }
  59. &.width-100 {
  60. width:100%;
  61. }
  62. [data-ax-td-label] {
  63. display: table-cell;
  64. width: 100px;
  65. padding: 7px;
  66. @include background-gradient(#fbfbfb, #f6f6f6);
  67. border-right: 1px solid #D8D8D8;
  68. vertical-align: middle;
  69. text-align: center;
  70. color: #363636;
  71. fieldset[readonly] &,
  72. fieldset[disabled] & {
  73. color: #c8c8c8;
  74. }
  75. a {
  76. color: #363636;
  77. }
  78. }
  79. + [data-ax-td] [data-ax-td-label] { border-left: 1px solid #D8D8D8 }
  80. [data-ax-td-wrap] {
  81. display: table-cell;
  82. padding: 7px 7px;
  83. color: #68717b;
  84. line-height: 1em;
  85. a {
  86. color: #68717b;
  87. &:after {
  88. content: ' ';
  89. }
  90. }
  91. .form-control,
  92. .btn {
  93. vertical-align: middle;
  94. }
  95. .form-control {
  96. font-size:1em;
  97. &.inline-block {
  98. display: inline-block;
  99. width: auto;
  100. }
  101. }
  102. textarea.form-control {
  103. resize:vertical;
  104. }
  105. .form-control-static {
  106. padding: 7px;
  107. min-height:0px;
  108. }
  109. .radio-inline,
  110. .checkbox-inline {
  111. line-height: 21px;
  112. padding: 0;
  113. display: inline-block;
  114. input[type="checkbox"],
  115. input[type="radio"] {
  116. display: inline-block;
  117. position: static;
  118. margin: 0 3px;
  119. vertical-align: middle;
  120. }
  121. }
  122. .radio-inline {
  123. margin-top:5px;
  124. + .radio-inline {
  125. margin-top:5px;
  126. }
  127. }
  128. fieldset[readonly] &,
  129. fieldset[disabled] & {
  130. color: #c8c8c8;
  131. .form-control {
  132. background-color: #eee;
  133. opacity: 1;
  134. }
  135. }
  136. }
  137. }
  138. }
  139. }