ivprog.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. .header{
  2. position: relative;
  3. padding: 10px 0;
  4. color: #fff;
  5. text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075);
  6. background: #001373; /* Old browsers */
  7. background: -moz-linear-gradient(45deg, #001373 0%, #33536D 100%); /* FF3.6+ */
  8. background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#001373), color-stop(100%,#33536D)); /* Chrome,Safari4+ */
  9. background: -webkit-linear-gradient(45deg, #001373 0%,#33536D 100%); /* Chrome10+,Safari5.1+ */
  10. background: -o-linear-gradient(45deg, #001373 0%,#33536D 100%); /* Opera 11.10+ */
  11. background: -ms-linear-gradient(45deg, #001373 0%,#33536D 100%); /* IE10+ */
  12. background: linear-gradient(45deg, #001373 0%,#33536D 100%); /* W3C */
  13. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001373', endColorstr='#33536D',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  14. -webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
  15. -moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
  16. box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
  17. }
  18. /* Gradiente: #020031 -> #001373 e #6d3353 -> #33536D */
  19. .header .container {
  20. position: relative;
  21. z-index: 2;
  22. }
  23. .header:after {
  24. content: '';
  25. display: block;
  26. position: absolute;
  27. top: 0;
  28. right: 0;
  29. bottom: 0;
  30. left: 0;
  31. background: url(../img/bs-docs-masthead-pattern.png) repeat center center;
  32. opacity: .4;
  33. }
  34. .header h1{
  35. margin: 0 0 0 30px;
  36. }
  37. .header .i18n {
  38. position: absolute;
  39. top: 10px;
  40. right: 10px;
  41. margin-top: 0 !important;
  42. padding: 15px;
  43. height: auto !important;
  44. overflow: hidden; /* clearfix */
  45. font-size: 13px !important;
  46. line-height: 16px !important;
  47. background: #222 !important; /* reset image and color in one line */
  48. background: rgba(0,0,0,.5) !important;
  49. border: 0 !important;
  50. border-radius: 4px;
  51. box-shadow: inset 0 3px 5px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.1);
  52. z-index: 1000;
  53. }
  54. .instrs{
  55. list-style: none;
  56. margin: 0;
  57. padding: 0;
  58. }
  59. .select-variable-value{
  60. display: inline-block;
  61. cursor: pointer;
  62. }
  63. .need-to-set > a{
  64. border: 1px dashed #000;
  65. }
  66. .select-variable-value > a{
  67. padding: 4px;
  68. }
  69. .select-variable-value > a:hover{
  70. background: yellow;
  71. }
  72. .select-variable-value a:hover{
  73. text-decoration: none;
  74. }
  75. .edit-in-place span span.editing {
  76. cursor: pointer;
  77. border: 1px dashed #000;
  78. padding: 4px;
  79. }
  80. .edit-in-place input, .edit-in-place select {
  81. display: none;
  82. }
  83. span.normal{
  84. font-weight: bold;
  85. color: blue;
  86. }
  87. a.normal{
  88. font-weight: bold;
  89. color: blue;
  90. }
  91. .edit-in-place.active span.normal {
  92. display: none;
  93. }
  94. .edit-in-place.active input, .edit-in-place.active select {
  95. display: inline-block;
  96. }
  97. .input-edit{
  98. display: inline;
  99. width: 80px;
  100. }
  101. .over{
  102. background: yellow;
  103. }
  104. .ivprog{
  105. }
  106. .ivprog h5{
  107. font-family: arial;
  108. font-size: 12px;
  109. text-transform: uppercase;
  110. padding: 0 10px 0 0;
  111. margin: 0 0 0 5px;
  112. }
  113. .ivprog .variables{
  114. background: #EFEFEF;
  115. -webkit-border-radius: 5px;
  116. -moz-border-radius: 5px;
  117. border-radius: 5px;
  118. margin: 10px 0;
  119. padding: 3px 10px 10px 3px;
  120. }
  121. .ivprog .variables .var{
  122. background: #FFFFFF;
  123. -webkit-border-radius: 5px;
  124. -moz-border-radius: 5px;
  125. border-radius: 5px;
  126. margin: 5px;
  127. padding: 3px 10px;
  128. display: block;
  129. float: left;
  130. }
  131. .ivprog .parameters{
  132. background: #EFEFEF;
  133. -webkit-border-radius: 5px;
  134. -moz-border-radius: 5px;
  135. border-radius: 5px;
  136. margin: 10px 0;
  137. padding: 3px 10px 10px 3px;
  138. }
  139. .ivprog .parameters .var{
  140. background: #FFFFFF;
  141. -webkit-border-radius: 5px;
  142. -moz-border-radius: 5px;
  143. border-radius: 5px;
  144. margin: 5px;
  145. padding: 3px 10px;
  146. display: block;
  147. float: left;
  148. }
  149. .source, .output{
  150. background: #6E6E6E;
  151. margin: 5px;
  152. font-family: "Lucida Console", Monaco, monospace;
  153. font-weight: normal;
  154. -webkit-border-radius: 5px;
  155. -moz-border-radius: 5px;
  156. border-radius: 5px;
  157. margin: 5px;
  158. padding: 6px 20px;
  159. color: #FFF;
  160. }
  161. .ivprog .btn-delete{
  162. position: absolute;
  163. top: 5px;
  164. right: 5px;
  165. }
  166. .ivprog .instr{
  167. position: relative;
  168. background: #EFEFEF;
  169. -webkit-border-radius: 5px;
  170. -moz-border-radius: 5px;
  171. border-radius: 5px;
  172. margin: 10px 0;
  173. padding: 10px;
  174. border: 1px solid #AEAEAE;
  175. }
  176. .ivprog .node-with-error{
  177. border: 2px solid red;
  178. padding: 4px 0;
  179. }
  180. .handle{
  181. height: 20px;
  182. width: 20px;
  183. margin: 0px 5px 20px -5px;
  184. float: left;
  185. text-align: center;
  186. background: #EFEFEF;
  187. cursor: move;
  188. -webkit-border-radius: 5px;
  189. -moz-border-radius: 5px;
  190. border-radius: 5px;
  191. }