Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

262 lines
7.2KB

  1. #yii-debug-toolbar-logo {
  2. position: fixed;
  3. right: 31px;
  4. bottom: 4px;
  5. }
  6. .yii-debug-toolbar {
  7. font: 11px Verdana, Arial, sans-serif;
  8. text-align: left;
  9. width: 96px;
  10. height: 42px;
  11. transition: width .3s ease;
  12. z-index: 1000000;
  13. }
  14. .yii-debug-toolbar_active {
  15. width: 100%;
  16. height: auto;
  17. }
  18. .yii-debug-toolbar_position_top {
  19. margin: 0 0 20px 0;
  20. width: 100%;
  21. }
  22. .yii-debug-toolbar_position_bottom {
  23. position: fixed;
  24. right: 0;
  25. bottom: 0;
  26. margin: 0;
  27. }
  28. .yii-debug-toolbar__bar {
  29. position: relative;
  30. padding: 0;
  31. font: 11px Verdana, Arial, sans-serif;
  32. text-align: left;
  33. height: 40px;
  34. overflow: hidden;
  35. background: rgb(255, 255, 255);
  36. background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(247, 247, 247) 100%); /* FF3.6-15 */
  37. background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(247, 247, 247) 100%); /* Chrome10-25,Safari5.1-6 */
  38. background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(247, 247, 247) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  39. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7', GradientType=0); /* IE6-9 */
  40. border: 1px solid rgba(0, 0, 0, 0.11);
  41. /* ensure debug toolbar text is displayed ltr even on rtl pages */
  42. direction: ltr;
  43. }
  44. .yii-debug-toolbar__bar:after {
  45. content: '';
  46. display: table;
  47. clear: both;
  48. }
  49. .yii-debug-toolbar__view {
  50. height: 0;
  51. overflow: hidden;
  52. background: white;
  53. transition: height .3s ease;
  54. }
  55. .yii-debug-toolbar__view iframe {
  56. margin: 0;
  57. padding: 0;
  58. padding-top: 10px;
  59. height: 100%;
  60. width: 100%;
  61. border: 0;
  62. }
  63. .yii-debug-toolbar_iframe_active .yii-debug-toolbar__view {
  64. height: 100%;
  65. }
  66. .yii-debug-toolbar__block {
  67. float: left;
  68. margin: 0;
  69. border-right: 1px solid rgba(0, 0, 0, 0.11);
  70. padding: 4px 8px;
  71. line-height: 32px;
  72. white-space: nowrap;
  73. }
  74. .yii-debug-toolbar__block_active {
  75. background: rgb(247, 247, 247); /* Old browsers */
  76. background: -moz-linear-gradient(top, rgb(247, 247, 247) 0%, rgb(224, 224, 224) 100%); /* FF3.6-15 */
  77. background: -webkit-linear-gradient(top, rgb(247, 247, 247) 0%, rgb(224, 224, 224) 100%); /* Chrome10-25,Safari5.1-6 */
  78. background: linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(224, 224, 224) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  79. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e0e0e0', GradientType=0); /* IE6-9 */
  80. }
  81. .yii-debug-toolbar__block a {
  82. display: inline-block;
  83. text-decoration: none;
  84. color: black;
  85. }
  86. .yii-debug-toolbar__block img {
  87. vertical-align: middle;
  88. }
  89. .yii-debug-toolbar__label {
  90. display: inline-block;
  91. padding: 2px 4px;
  92. font-size: 12px;
  93. font-weight: normal;
  94. line-height: 14px;
  95. white-space: nowrap;
  96. vertical-align: baseline;
  97. color: #ffffff;
  98. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  99. background-color: #999999;
  100. -webkit-border-radius: 3px;
  101. -moz-border-radius: 3px;
  102. border-radius: 3px;
  103. }
  104. .yii-debug-toolbar__label:empty {
  105. display: none;
  106. }
  107. a.yii-debug-toolbar__label:hover,
  108. a.yii-debug-toolbar__label:focus {
  109. color: #ffffff;
  110. text-decoration: none;
  111. cursor: pointer;
  112. }
  113. .yii-debug-toolbar__label_important {
  114. background-color: #b94a48;
  115. }
  116. .yii-debug-toolbar__label_important[href] {
  117. background-color: #953b39;
  118. }
  119. .yii-debug-toolbar__label_warning,
  120. .yii-debug-toolbar__badge_warning {
  121. background-color: #f89406;
  122. }
  123. .yii-debug-toolbar__label_warning[href] {
  124. background-color: #c67605;
  125. }
  126. .yii-debug-toolbar__label_success {
  127. background-color: #468847;
  128. }
  129. .yii-debug-toolbar__label_success[href] {
  130. background-color: #356635;
  131. }
  132. .yii-debug-toolbar__label_info {
  133. background-color: #3a87ad;
  134. }
  135. .yii-debug-toolbar__label_info[href] {
  136. background-color: #2d6987;
  137. }
  138. .yii-debug-toolbar__label_inverse,
  139. .yii-debug-toolbar__badge_inverse {
  140. background-color: #333333;
  141. }
  142. .yii-debug-toolbar__label_inverse[href],
  143. .yii-debug-toolbar__badge_inverse[href] {
  144. background-color: #1a1a1a;
  145. }
  146. .yii-debug-toolbar__title {
  147. background: rgb(247, 247, 247); /* Old browsers */
  148. background: -moz-linear-gradient(top, rgb(247, 247, 247) 0%, rgb(224, 224, 224) 100%); /* FF3.6-15 */
  149. background: -webkit-linear-gradient(top, rgb(247, 247, 247) 0%, rgb(224, 224, 224) 100%); /* Chrome10-25,Safari5.1-6 */
  150. background: linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(224, 224, 224) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  151. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e0e0e0', GradientType=0); /* IE6-9 */
  152. }
  153. .yii-debug-toolbar__toggle,
  154. .yii-debug-toolbar__external {
  155. cursor: pointer;
  156. position: absolute;
  157. width: 30px;
  158. height: 30px;
  159. font-size: 25px;
  160. font-weight: 100;
  161. line-height: 28px;
  162. color: #ffffff;
  163. text-align: center;
  164. opacity: 0.5;
  165. filter: alpha(opacity=50);
  166. transition: opacity .3s ease;
  167. }
  168. .yii-debug-toolbar__toggle:hover,
  169. .yii-debug-toolbar__toggle:focus,
  170. .yii-debug-toolbar__external:hover,
  171. .yii-debug-toolbar__external:focus {
  172. color: #ffffff;
  173. text-decoration: none;
  174. opacity: 0.9;
  175. filter: alpha(opacity=90);
  176. }
  177. .yii-debug-toolbar__toggle-icon,
  178. .yii-debug-toolbar__external-icon {
  179. display: inline-block;
  180. background-position: 50% 50%;
  181. background-repeat: no-repeat;
  182. }
  183. .yii-debug-toolbar__toggle {
  184. right: 10px;
  185. top: 4px;
  186. }
  187. .yii-debug-toolbar__toggle-icon {
  188. padding: 7px 0;
  189. width: 10px;
  190. height: 16px;
  191. background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBmaWxsPSIjNDQ0IiBkPSJNMTUuNTYzIDQwLjgzNmEuOTk3Ljk5NyAwIDAgMCAxLjQxNCAwbDE1LTE1YTEgMSAwIDAgMCAwLTEuNDE0bC0xNS0xNWExIDEgMCAwIDAtMS40MTQgMS40MTRMMjkuODU2IDI1LjEzIDE1LjU2MyAzOS40MmExIDEgMCAwIDAgMCAxLjQxNHoiLz48L3N2Zz4=');
  192. transition: -webkit-transform .3s ease-out;
  193. transition: transform .3s ease-out;
  194. }
  195. .yii-debug-toolbar_active .yii-debug-toolbar__toggle-icon {
  196. -webkit-transform: rotate(180deg);
  197. transform: rotate(180deg);
  198. }
  199. .yii-debug-toolbar_iframe_active .yii-debug-toolbar__toggle-icon {
  200. -webkit-transform: rotate(90deg);
  201. transform: rotate(90deg);
  202. }
  203. .yii-debug-toolbar__external {
  204. display: none;
  205. right: 50px;
  206. top: 4px;
  207. }
  208. .yii-debug-toolbar_iframe_active .yii-debug-toolbar__external {
  209. display: block;
  210. }
  211. .yii-debug-toolbar__external-icon {
  212. padding: 8px 0;
  213. width: 14px;
  214. height: 14px;
  215. background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBmaWxsPSIjNDQ0IiBkPSJNMzkuNjQyIDkuNzIyYTEuMDEgMS4wMSAwIDAgMC0uMzgyLS4wNzdIMjguMTAzYTEgMSAwIDAgMCAwIDJoOC43NDNMMjEuNyAyNi43OWExIDEgMCAwIDAgMS40MTQgMS40MTVMMzguMjYgMTMuMDZ2OC43NDNhMSAxIDAgMCAwIDIgMFYxMC42NDZhMS4wMDUgMS4wMDUgMCAwIDAtLjYxOC0uOTI0eiIvPjxwYXRoIGQ9Ik0zOS4yNiAyNy45ODVhMSAxIDAgMCAwLTEgMXYxMC42NmgtMjh2LTI4aDEwLjY4M2ExIDEgMCAwIDAgMC0ySDkuMjZhMSAxIDAgMCAwLTEgMXYzMGExIDEgMCAwIDAgMSAxaDMwYTEgMSAwIDAgMCAxLTF2LTExLjY2YTEgMSAwIDAgMC0xLTF6Ii8+PC9zdmc+');
  216. }