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.

172 lines
2.9 KiB

7 years ago
7 years ago
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. @include clear-fix-after();
  47. [data-ax-td] {
  48. float: left;
  49. display: table;
  50. table-layout: fixed;
  51. width: 300px;
  52. vertical-align: top;
  53. min-height: 40px;
  54. &.width-auto {
  55. width:auto;
  56. }
  57. &.width-100 {
  58. width:100%;
  59. }
  60. [data-ax-td-label] {
  61. display: table-cell;
  62. width: 100px;
  63. padding: 7px;
  64. @include background-gradient(#fbfbfb, #f6f6f6);
  65. border-right: 1px solid #D8D8D8;
  66. vertical-align: middle;
  67. text-align: center;
  68. color: #363636;
  69. fieldset[readonly] &,
  70. fieldset[disabled] & {
  71. color: #c8c8c8;
  72. }
  73. a {
  74. color: #363636;
  75. }
  76. }
  77. + [data-ax-td] [data-ax-td-label] { border-left: 1px solid #D8D8D8 }
  78. [data-ax-td-wrap] {
  79. display: table-cell;
  80. padding: 7px 7px;
  81. color: #68717b;
  82. line-height: 1em;
  83. a {
  84. color: #68717b;
  85. &:after {
  86. content: ' ';
  87. }
  88. }
  89. .form-control,
  90. .btn {
  91. vertical-align: middle;
  92. }
  93. .form-control {
  94. font-size:1em;
  95. &.inline-block {
  96. display: inline-block;
  97. width: auto;
  98. }
  99. }
  100. textarea.form-control {
  101. resize:vertical;
  102. }
  103. .form-control-static {
  104. padding: 7px;
  105. min-height:0px;
  106. }
  107. .radio-inline,
  108. .checkbox-inline {
  109. line-height: 21px;
  110. padding: 0;
  111. display: inline-block;
  112. input[type="checkbox"],
  113. input[type="radio"] {
  114. display: inline-block;
  115. position: static;
  116. margin: 0 3px;
  117. vertical-align: middle;
  118. }
  119. }
  120. .radio-inline {
  121. margin-top:5px;
  122. + .radio-inline {
  123. margin-top:5px;
  124. }
  125. }
  126. fieldset[readonly] &,
  127. fieldset[disabled] & {
  128. color: #c8c8c8;
  129. .form-control {
  130. background-color: #eee;
  131. opacity: 1;
  132. }
  133. }
  134. }
  135. }
  136. }
  137. }