main.css 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712
  1. html {
  2. font-family: sans-serif; /* 1 */
  3. -ms-text-size-adjust: 100%; /* 2 */
  4. -webkit-text-size-adjust: 100%; /* 2 */
  5. }
  6. /**
  7. * Remove the margin in all browsers (opinionated).
  8. */
  9. body {
  10. margin: 0;
  11. }
  12. /* HTML5 display definitions
  13. ========================================================================== */
  14. /**
  15. * Add the correct display in IE 9-.
  16. * 1. Add the correct display in Edge, IE, and Firefox.
  17. * 2. Add the correct display in IE.
  18. */
  19. article,
  20. aside,
  21. details, /* 1 */
  22. figcaption,
  23. figure,
  24. footer,
  25. header,
  26. main, /* 2 */
  27. menu,
  28. nav,
  29. section,
  30. summary { /* 1 */
  31. display: block;
  32. }
  33. /**
  34. * Add the correct display in IE 9-.
  35. */
  36. audio,
  37. canvas,
  38. progress,
  39. video {
  40. display: inline-block;
  41. }
  42. /**
  43. * Add the correct display in iOS 4-7.
  44. */
  45. audio:not([controls]) {
  46. display: none;
  47. height: 0;
  48. }
  49. /**
  50. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  51. */
  52. progress {
  53. vertical-align: baseline;
  54. }
  55. /**
  56. * Add the correct display in IE 10-.
  57. * 1. Add the correct display in IE.
  58. */
  59. template, /* 1 */
  60. [hidden] {
  61. display: none;
  62. }
  63. /* Links
  64. ========================================================================== */
  65. /**
  66. * 1. Remove the gray background on active links in IE 10.
  67. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  68. */
  69. a {
  70. background-color: transparent; /* 1 */
  71. -webkit-text-decoration-skip: objects; /* 2 */
  72. }
  73. /**
  74. * Remove the outline on focused links when they are also active or hovered
  75. * in all browsers (opinionated).
  76. */
  77. a:active,
  78. a:hover {
  79. outline-width: 0;
  80. }
  81. table {
  82. border-collapse: collapse;
  83. border-spacing: 0;
  84. }
  85. /* Text-level semantics
  86. ========================================================================== */
  87. /**
  88. * 1. Remove the bottom border in Firefox 39-.
  89. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  90. */
  91. abbr[title] {
  92. border-bottom: none; /* 1 */
  93. text-decoration: underline; /* 2 */
  94. text-decoration: underline dotted; /* 2 */
  95. }
  96. /**
  97. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  98. */
  99. b,
  100. strong {
  101. font-weight: inherit;
  102. }
  103. /**
  104. * Add the correct font weight in Chrome, Edge, and Safari.
  105. */
  106. b,
  107. strong {
  108. font-weight: bolder;
  109. }
  110. /**
  111. * Add the correct font style in Android 4.3-.
  112. */
  113. dfn {
  114. font-style: italic;
  115. }
  116. /**
  117. * Correct the font size and margin on `h1` elements within `section` and
  118. * `article` contexts in Chrome, Firefox, and Safari.
  119. */
  120. h1 {
  121. font-size: 2em;
  122. margin: 0.67em 0;
  123. }
  124. /**
  125. * Add the correct background and color in IE 9-.
  126. */
  127. mark {
  128. background-color: #ff0;
  129. color: #000;
  130. }
  131. /**
  132. * Add the correct font size in all browsers.
  133. */
  134. small {
  135. font-size: 80%;
  136. }
  137. /**
  138. * Prevent `sub` and `sup` elements from affecting the line height in
  139. * all browsers.
  140. */
  141. sub,
  142. sup {
  143. font-size: 75%;
  144. line-height: 0;
  145. position: relative;
  146. vertical-align: baseline;
  147. }
  148. sub {
  149. bottom: -0.25em;
  150. }
  151. sup {
  152. top: -0.5em;
  153. }
  154. /* Embedded content
  155. ========================================================================== */
  156. /**
  157. * Remove the border on images inside links in IE 10-.
  158. */
  159. img {
  160. border-style: none;
  161. }
  162. /**
  163. * Hide the overflow in IE.
  164. */
  165. svg:not(:root) {
  166. overflow: hidden;
  167. }
  168. /* Grouping content
  169. ========================================================================== */
  170. /**
  171. * 1. Correct the inheritance and scaling of font size in all browsers.
  172. * 2. Correct the odd `em` font sizing in all browsers.
  173. */
  174. code,
  175. kbd,
  176. pre,
  177. samp {
  178. font-family: monospace, monospace; /* 1 */
  179. font-size: 1em; /* 2 */
  180. }
  181. /**
  182. * Add the correct margin in IE 8.
  183. */
  184. figure {
  185. margin: 1em 40px;
  186. }
  187. /**
  188. * 1. Add the correct box sizing in Firefox.
  189. * 2. Show the overflow in Edge and IE.
  190. */
  191. hr {
  192. box-sizing: content-box; /* 1 */
  193. height: 0; /* 1 */
  194. overflow: visible; /* 2 */
  195. }
  196. /* Forms
  197. ========================================================================== */
  198. /**
  199. * 1. Change font properties to `inherit` in all browsers (opinionated).
  200. * 2. Remove the margin in Firefox and Safari.
  201. */
  202. button,
  203. input,
  204. optgroup,
  205. select,
  206. textarea {
  207. font: inherit; /* 1 */
  208. margin: 0; /* 2 */
  209. }
  210. /**
  211. * Restore the font weight unset by the previous rule.
  212. */
  213. optgroup {
  214. font-weight: bold;
  215. }
  216. /**
  217. * Show the overflow in IE.
  218. * 1. Show the overflow in Edge.
  219. */
  220. button,
  221. input { /* 1 */
  222. overflow: visible;
  223. }
  224. /**
  225. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  226. * 1. Remove the inheritance of text transform in Firefox.
  227. */
  228. button,
  229. select { /* 1 */
  230. text-transform: none;
  231. }
  232. /**
  233. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  234. * controls in Android 4.
  235. * 2. Correct the inability to style clickable types in iOS and Safari.
  236. */
  237. button,
  238. html [type="button"], /* 1 */
  239. [type="reset"],
  240. [type="submit"] {
  241. -webkit-appearance: button; /* 2 */
  242. }
  243. /**
  244. * Remove the inner border and padding in Firefox.
  245. */
  246. button::-moz-focus-inner,
  247. [type="button"]::-moz-focus-inner,
  248. [type="reset"]::-moz-focus-inner,
  249. [type="submit"]::-moz-focus-inner {
  250. border-style: none;
  251. padding: 0;
  252. }
  253. /**
  254. * Restore the focus styles unset by the previous rule.
  255. */
  256. button:-moz-focusring,
  257. [type="button"]:-moz-focusring,
  258. [type="reset"]:-moz-focusring,
  259. [type="submit"]:-moz-focusring {
  260. outline: 1px dotted ButtonText;
  261. }
  262. /**
  263. * Change the border, margin, and padding in all browsers (opinionated).
  264. */
  265. fieldset {
  266. border: 1px solid #c0c0c0;
  267. margin: 0 2px;
  268. padding: 0.35em 0.625em 0.75em;
  269. }
  270. /**
  271. * 1. Correct the text wrapping in Edge and IE.
  272. * 2. Correct the color inheritance from `fieldset` elements in IE.
  273. * 3. Remove the padding so developers are not caught out when they zero out
  274. * `fieldset` elements in all browsers.
  275. */
  276. legend {
  277. box-sizing: border-box; /* 1 */
  278. color: inherit; /* 2 */
  279. display: table; /* 1 */
  280. max-width: 100%; /* 1 */
  281. padding: 0; /* 3 */
  282. white-space: normal; /* 1 */
  283. }
  284. /**
  285. * Remove the default vertical scrollbar in IE.
  286. */
  287. textarea {
  288. overflow: auto;
  289. }
  290. /**
  291. * 1. Add the correct box sizing in IE 10-.
  292. * 2. Remove the padding in IE 10-.
  293. */
  294. input[type="checkbox"],
  295. input[type="radio"] {
  296. box-sizing: border-box; /* 1 */
  297. padding: 0; /* 2 */
  298. }
  299. /**
  300. * Correct the cursor style of increment and decrement buttons in Chrome.
  301. */
  302. input[type="number"]::-webkit-inner-spin-button,
  303. input[type="number"]::-webkit-outer-spin-button {
  304. height: auto;
  305. }
  306. input[type="search"] {
  307. -webkit-appearance: textfield; /* 1 */
  308. outline-offset: -2px; /* 2 */
  309. }
  310. input[type="search"]::-webkit-search-cancel-button,
  311. input[type="search"]::-webkit-search-decoration {
  312. -webkit-appearance: none;
  313. }
  314. ::-webkit-input-placeholder {
  315. color: inherit;
  316. opacity: 0.54;
  317. }
  318. ::-webkit-file-upload-button {
  319. -webkit-appearance: button; /* 1 */
  320. font: inherit; /* 2 */
  321. }
  322. /* Main style */
  323. *:before,
  324. *:after {
  325. -webkit-box-sizing: border-box;
  326. -moz-box-sizing: border-box;
  327. box-sizing: border-box;
  328. }
  329. html {
  330. font-family:Arial, Helvetica, sans-serif;
  331. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  332. }
  333. input,
  334. button,
  335. select,
  336. textarea {
  337. font-family: inherit;
  338. font-size: inherit;
  339. line-height: inherit;
  340. }
  341. body {background-color: #E8EBF1; color: #333;overflow-y: scroll; height: 100%; line-height: 1.42857143;}
  342. .clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical > .btn-group:before,.btn-group-vertical > .btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after
  343. {display: table;content: " ";}
  344. input, select {
  345. -webkit-box-sizing: border-box;
  346. -moz-box-sizing: border-box;
  347. box-sizing: border-box;
  348. }
  349. .footer {
  350. margin-top: 54px !important;
  351. /*height: 40px;*/
  352. /*background-color: #fff;*/
  353. /*border-top: 1px solid #d6d6d6;*/
  354. clear: both;
  355. text-align: right;
  356. width: 100%;
  357. color: #fff;
  358. }
  359. .footer > .container {
  360. padding-right: 10px;
  361. }
  362. div > .logo{
  363. width: 245px;
  364. height: 85px;
  365. margin: 10px;
  366. }
  367. .logo{
  368. display: block;
  369. background: url('rotek.png') no-repeat -5px -15px;
  370. width: 100%;
  371. height: auto
  372. ; -webkit-background-size: cover;
  373. -moz-background-size: cover;
  374. -o-background-size: cover;
  375. background-size: cover;
  376. }
  377. .mark-ok{
  378. display: block;
  379. background: url('rotek.png') no-repeat 0 -73px;
  380. background-size: 172px 87px;
  381. width: 16px;
  382. height: 14px;
  383. float: left;
  384. margin-right:10px;
  385. margin-top: 2px;
  386. }
  387. .mark-almin{
  388. display: block;
  389. background: url('rotek.png') no-repeat -52px -73px;
  390. background-size: 172px 87px;
  391. width: 16px;
  392. height: 14px;
  393. float: left;
  394. margin-right:10px;
  395. margin-top: 2px;
  396. }
  397. .mark-almaj{
  398. display: block;
  399. background: url('rotek.png') no-repeat -32px -73px;
  400. background-size: 172px 87px;
  401. width: 16px;
  402. height: 14px;
  403. float: left;
  404. margin-right:10px;
  405. margin-top: 2px;
  406. }
  407. .mark-bad{
  408. display: block;
  409. background: url('rotek.png') no-repeat -16px -73px;
  410. background-size: 172px 87px;
  411. width: 16px;
  412. height: 14px;
  413. float: left;
  414. margin-right:10px;
  415. margin-top: 2px;
  416. }
  417. .navbar {
  418. position: relative;
  419. min-height: 100px;
  420. /*margin-bottom: 20px;*/
  421. /*border-bottom: 1px solid transparent;*/
  422. }
  423. .navbar-default {
  424. background-color: #fff;
  425. /*border-color: #e7e7e7;*/
  426. box-shadow: 0 1px 5px rgba(0,0,0,0.2);
  427. }
  428. .navbar-default .navbar-brand {
  429. color: #337ab7;
  430. }
  431. .navbar-default .navbar-brand:hover,
  432. .navbar-default .navbar-brand:focus {
  433. color: #fa1127;
  434. background-color: transparent;
  435. }
  436. .navbar-default .navbar-text {
  437. color: #777;
  438. }
  439. .navbar-default .navbar-nav > li > a {
  440. line-height: 1em;
  441. color: #337ab7;
  442. font-size: 16px;
  443. text-decoration: none;
  444. }
  445. .navbar-header {
  446. float: left;
  447. }
  448. .navbar-nav {
  449. float: right;
  450. margin: 0;
  451. }
  452. .navbar-nav > li {
  453. float: left;
  454. }
  455. .navbar-nav > li > a {
  456. padding-top: 10px;
  457. padding-bottom: 10px;
  458. }
  459. .nav {
  460. padding-left: 0;
  461. margin-bottom: 0;
  462. list-style: none;
  463. display: inline;
  464. }
  465. .nav > li {
  466. position: relative;
  467. display: block;
  468. }
  469. .nav > li > a {
  470. text-transform: uppercase;
  471. letter-spacing: .02em;
  472. position: relative;
  473. display: block;
  474. padding: 42px 10px;
  475. }
  476. .nav > li > a:hover,
  477. .nav > li > a:focus {
  478. text-decoration: none;
  479. /*background: #eee;*/
  480. }
  481. .nav > li > a.active{
  482. /*background: #e7e7e7;*/
  483. color: #424f54;
  484. border-bottom: 4px solid #01a1be;
  485. padding: 42px 10px 38px;
  486. }
  487. li.logout {
  488. position: absolute;
  489. top: 10px;
  490. right: 25px;
  491. }
  492. .navbar-default .navbar-nav > li.logout > a{
  493. font-size: 0.8em;
  494. padding: 0;
  495. border-bottom: 1px dashed;
  496. z-index: 102;
  497. }
  498. table {
  499. background-color: transparent;
  500. }
  501. caption {
  502. padding-top: 8px;
  503. padding-bottom: 8px;
  504. color: #777;
  505. text-align: left;
  506. }
  507. th {
  508. text-align: left;
  509. }
  510. .table {
  511. width: 100%;
  512. margin-bottom: 20px;
  513. }
  514. .table > thead > tr > th,
  515. .table > tbody > tr > th,
  516. .table > tfoot > tr > th,
  517. .table > thead > tr > td,
  518. .table > tbody > tr > td,
  519. .table > tfoot > tr > td {
  520. padding: 8px;
  521. line-height: 1.42857143;
  522. vertical-align: middle;
  523. border-top: 1px solid #ddd;
  524. }
  525. .table > thead > tr > th {
  526. vertical-align: bottom;
  527. border-bottom: 2px solid #ddd;
  528. }
  529. .table > caption + thead > tr:first-child > th,
  530. .table > colgroup + thead > tr:first-child > th,
  531. .table > thead:first-child > tr:first-child > th,
  532. .table > caption + thead > tr:first-child > td,
  533. .table > colgroup + thead > tr:first-child > td,
  534. .table > thead:first-child > tr:first-child > td {
  535. border-top: 0;
  536. }
  537. .table > tbody + tbody {
  538. border-top: 2px solid #ddd;
  539. }
  540. .table .table {
  541. background-color: #fff;
  542. }
  543. .table-condensed > thead > tr > th,
  544. .table-condensed > tbody > tr > th,
  545. .table-condensed > tfoot > tr > th,
  546. .table-condensed > thead > tr > td,
  547. .table-condensed > tbody > tr > td,
  548. .table-condensed > tfoot > tr > td {
  549. padding: 5px;
  550. }
  551. .table-bordered {
  552. border: 1px solid #ddd;
  553. }
  554. .table-bordered > thead > tr > th,
  555. .table-bordered > tbody > tr > th,
  556. .table-bordered > tfoot > tr > th,
  557. .table-bordered > thead > tr > td,
  558. .table-bordered > tbody > tr > td,
  559. .table-bordered > tfoot > tr > td {
  560. border: 1px solid #ddd;
  561. }
  562. .table-bordered > thead > tr > th,
  563. .table-bordered > thead > tr > td {
  564. border-bottom-width: 2px;
  565. }
  566. .table-striped > tbody > tr:nth-of-type(odd) {
  567. background-color: #f9f9f9;
  568. }
  569. .table-hover > tbody > tr:hover {
  570. background-color: #f5f5f5;
  571. }
  572. table col[class*="col-"] {
  573. position: static;
  574. display: table-column;
  575. float: none;
  576. }
  577. table td[class*="col-"],
  578. table th[class*="col-"] {
  579. position: static;
  580. display: table-cell;
  581. float: none;
  582. }
  583. .table > tbody > tr > td.ph{
  584. text-align: center;
  585. color: #ACB3C0;
  586. background-color: #f8f8f8;
  587. letter-spacing:0.02em;
  588. text-transform: uppercase;
  589. }
  590. .table > thead > tr > th.ph{
  591. font-weight: normal;
  592. text-align: left;
  593. color: #ACB3C0;
  594. background-color: #f8f8f8;
  595. letter-spacing:0.02em;
  596. text-transform: uppercase;
  597. }
  598. .table > thead > tr > th.ph2{
  599. font-weight: normal;
  600. text-align: left;
  601. color: #ACB3C0;
  602. background-color: #f8f8f8;
  603. }
  604. .table-responsive {
  605. min-height: .01%;
  606. overflow-x: auto;
  607. }
  608. @media screen and (max-width: 767px) {
  609. .table-responsive {
  610. width: 100%;
  611. margin-bottom: 15px;
  612. overflow-y: hidden;
  613. -ms-overflow-style: -ms-autohiding-scrollbar;
  614. border: 1px solid #ddd;
  615. }
  616. .table-responsive > .table {
  617. margin-bottom: 0;
  618. }
  619. .table-responsive > .table > thead > tr > th,
  620. .table-responsive > .table > tbody > tr > th,
  621. .table-responsive > .table > tfoot > tr > th,
  622. .table-responsive > .table > thead > tr > td,
  623. .table-responsive > .table > tbody > tr > td,
  624. .table-responsive > .table > tfoot > tr > td {
  625. white-space: nowrap;
  626. }
  627. .table-responsive > .table-bordered {
  628. border: 0;
  629. }
  630. .table-responsive > .table-bordered > thead > tr > th:first-child,
  631. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  632. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  633. .table-responsive > .table-bordered > thead > tr > td:first-child,
  634. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  635. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  636. border-left: 0;
  637. }
  638. .table-responsive > .table-bordered > thead > tr > th:last-child,
  639. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  640. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  641. .table-responsive > .table-bordered > thead > tr > td:last-child,
  642. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  643. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  644. border-right: 0;
  645. }
  646. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  647. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  648. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  649. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  650. border-bottom: 0;
  651. }
  652. }
  653. fieldset {
  654. min-width: 0;
  655. padding: 0;
  656. margin: 0;
  657. border: 0;
  658. }
  659. .panel {
  660. margin-bottom: 20px;
  661. background-color: #fff;
  662. border: 1px solid transparent;
  663. -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.15);
  664. box-shadow: 0 1px 5px rgba(0,0,0,0.15);
  665. }
  666. .panel-heading {
  667. padding: 10px 15px;
  668. border-bottom: 1px solid transparent;
  669. color: #ACB3C0;
  670. letter-spacing: .02em;
  671. text-transform: uppercase;
  672. }
  673. .panel-heading > .dropdown .dropdown-toggle {
  674. color: inherit;
  675. }
  676. .panel-title {
  677. margin-top: 0;
  678. margin-bottom: 0;
  679. font-size: 16px;
  680. color: inherit;
  681. }
  682. .panel-title > a,
  683. .panel-title > small,
  684. .panel-title > .small,
  685. .panel-title > small > a,
  686. .panel-title > .small > a {
  687. color: inherit;
  688. }
  689. .panel-footer {
  690. padding: 10px 15px;
  691. background-color: #f8f8f8;
  692. border-top: 1px solid #ddd;
  693. }
  694. .panel > .list-group,
  695. .panel > .panel-collapse > .list-group {
  696. margin-bottom: 0;
  697. }
  698. .panel > .list-group .list-group-item,
  699. .panel > .panel-collapse > .list-group .list-group-item {
  700. border-width: 1px 0;
  701. border-radius: 0;
  702. }
  703. .panel > .list-group:first-child .list-group-item:first-child,
  704. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  705. border-top: 0;
  706. border-top-left-radius: 3px;
  707. border-top-right-radius: 3px;
  708. }
  709. .panel > .list-group:last-child .list-group-item:last-child,
  710. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  711. border-bottom: 0;
  712. border-bottom-right-radius: 3px;
  713. border-bottom-left-radius: 3px;
  714. }
  715. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  716. border-top-left-radius: 0;
  717. border-top-right-radius: 0;
  718. }
  719. .panel-heading + .list-group .list-group-item:first-child {
  720. border-top-width: 0;
  721. }
  722. .list-group + .panel-footer {
  723. border-top-width: 0;
  724. }
  725. .panel .table,
  726. .panel > .table-responsive > .table,
  727. .panel > .panel-collapse > .table {
  728. margin-bottom: 0px !important;
  729. }
  730. .panel > .table caption,
  731. .panel > .table-responsive > .table caption,
  732. .panel > .panel-collapse > .table caption {
  733. padding-right: 15px;
  734. padding-left: 15px;
  735. }
  736. .panel > .panel-body + .table,
  737. .panel > .panel-body + .table-responsive,
  738. .panel > .table + .panel-body,
  739. .panel > .table-responsive + .panel-body {
  740. border-top: 1px solid #ddd;
  741. }
  742. .panel > .table > tbody:first-child > tr:first-child th,
  743. .panel > .table > tbody:first-child > tr:first-child td {
  744. border-top: 0;
  745. }
  746. .panel > .table > tbody:last-child > tr:last-child th,
  747. .panel > .table > tbody:last-child > tr:last-child td {
  748. border-bottom: 1px solid #ddd;
  749. }
  750. .panel > .table-responsive {
  751. margin-bottom: 0;
  752. border: 0;
  753. }
  754. .panel-group {
  755. margin-bottom: 20px;
  756. }
  757. .panel-group .panel {
  758. margin-bottom: 0;
  759. border-radius: 0;
  760. }
  761. .panel-group .panel + .panel {
  762. margin-top: 5px;
  763. }
  764. .panel-group .panel-heading {
  765. border-bottom: 0;
  766. }
  767. .panel-group .panel-heading + .panel-collapse > .panel-body,
  768. .panel-group .panel-heading + .panel-collapse > .list-group {
  769. border-top: 1px solid #ddd;
  770. }
  771. .panel-group .panel-footer {
  772. border-top: 0;
  773. }
  774. .panel-group .panel-footer + .panel-collapse .panel-body {
  775. border-bottom: 1px solid #ddd;
  776. }
  777. .panel-default {
  778. border-color: #ddd;
  779. }
  780. .panel-default > .panel-heading {
  781. color: #ACB3C0;
  782. background-color: #f8f8f8;
  783. border-top: 1px solid #ddd;
  784. /*border-color: #ddd;*/
  785. }
  786. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  787. border-top-color: #ddd;
  788. }
  789. .panel-default > .panel-heading .badge {
  790. color: #f5f5f5;
  791. background-color: #333;
  792. }
  793. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  794. border-bottom-color: #ddd;
  795. }
  796. .wrapper{
  797. min-height: 100%;
  798. height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */
  799. height: 100%;
  800. margin: 0 auto 60px; /* the bottom margin is the negative value of the footer's height */
  801. width:960px;
  802. }
  803. .wrapper h1 {
  804. text-transform: uppercase;
  805. font-weight: normal;
  806. color: #747589;
  807. }
  808. .wrapper-default{
  809. background-color: #fff;
  810. box-shadow: 0 1px 5px rgba(0,0,0,0.15);
  811. }
  812. .wrapper-default > tbody > tr > th{
  813. border: none;
  814. }
  815. .wrapper-default .none-border{
  816. border: none;
  817. }
  818. .active{text-decoration: none; color: red;}
  819. .cont-2,.cont-3 {float: left; padding-right: 20px;}
  820. .cont-4 {float: left; padding-right: 5px;}
  821. .cont-2 {width: 47%;}
  822. .cont-3 {width: 30%}
  823. .cont-4 {width: 24.4%}
  824. .hidden{display: none !important; opacity: 0;}
  825. .edit-btn{
  826. background: transparent;
  827. border: 1px solid #d2d2d2;
  828. color: #2e2e2e;
  829. border-radius: 0;
  830. float: right;
  831. }
  832. .save-btn{
  833. background: transparent;
  834. border: 1px solid #d2d2d2;
  835. color: #2e2e2e;
  836. border-radius: 0;
  837. }
  838. #menu-icon {
  839. display: none;
  840. width: 50px;
  841. height: 100px;
  842. float: right;
  843. background:#01a1be;
  844. -ms-touch-action: manipulation;
  845. touch-action: manipulation;
  846. cursor: pointer;
  847. -webkit-user-select: none;
  848. -moz-user-select: none;
  849. -ms-user-select: none;
  850. user-select: none;
  851. }
  852. a:hover#menu-icon {
  853. background: #444;
  854. }
  855. .tb-stat > tbody > tr > td:last-child {
  856. width: 34%;
  857. text-align: center;
  858. }
  859. .tb-info > tbody > tr > td:last-child {
  860. width: 34%;
  861. }
  862. /*MEDIA QUERY*/
  863. @media only print{
  864. .navbar > ul, .navbar:active > ul {
  865. display: none;
  866. }
  867. }
  868. @media only screen and (max-width : 768px) {
  869. .tb-stat > tbody > tr > td:last-child {
  870. /*width: auto;*/
  871. }
  872. .table > thead > tr > th.ph{
  873. font-size: .8em;
  874. }
  875. .table > tbody > tr > td.ph{
  876. font-size: .8em;
  877. }
  878. h1{font-size: 1.7em;}
  879. /*.navbar{position: fixed ; width: 100%; height: 100px; top: 0; z-index: 1000;}*/
  880. /*.wrapper{margin-top: 121px;}*/
  881. #menu-icon {display:inline-block;}
  882. #checkUpdatePass, #changePassword, #uploadSettings, #rectifiersConfig{
  883. top: 10% !important;
  884. }
  885. .navbar > ul, .navbar:active > ul {
  886. display: none;
  887. position: absolute;
  888. padding: 0;
  889. background: #fff;
  890. border: 5px solid #01a1be;
  891. right: 20px;
  892. top: 60px;
  893. width: 50%;
  894. z-index: 100;
  895. }
  896. .navbar > li, .navbar-nav > li {
  897. text-align: center;
  898. float: none;
  899. width: 100%;
  900. padding:0;
  901. }
  902. .navbar-default .navbar-nav > li.logout > a{
  903. border-bottom: none;
  904. }
  905. ul.nav.navbar-nav > li {
  906. border-bottom: 1px solid #eee;
  907. }
  908. ul.nav.navbar-nav > li:last-child {
  909. border-bottom: none;
  910. }
  911. .nav > li {display: inline-block;}
  912. .navbar > li > a {
  913. font-size: 1.5em;
  914. padding: 0;
  915. }
  916. .nav > li > a {
  917. padding: 1em 0;
  918. }
  919. .nav > li > a.active{
  920. background: #e7e7e7;
  921. color: #424f54;
  922. border: none;
  923. padding: 1em 0;
  924. }
  925. .navbar-default .navbar-nav > li.logout {
  926. position: static;
  927. }
  928. .navbar-default .navbar-nav > li.logout > a {
  929. font-size: 1em;
  930. padding: 1em 0;
  931. }
  932. /*.navbar:hover > ul {display: block;}*/
  933. .wrapper{
  934. width:95%;
  935. padding: 0 0.5em;
  936. }
  937. /*.cont-2 {width: 100%; padding: 0;}
  938. .cont-3 {width: 100%; padding: 0;}*/
  939. }
  940. @media only screen
  941. and (min-device-width : 768px)
  942. and (max-device-width : 1024px)
  943. and (orientation : landscape)
  944. and (-webkit-min-device-pixel-ratio: 1) {
  945. .navbar { min-height: 98px;}
  946. .navbar-default .navbar-nav > li > a { font-size: 14px; }
  947. .subnav { height: 35px !important;}
  948. .subnav .nav > li > a { font-size: 12px;}
  949. }
  950. @media (max-width: 768px) { .cont-2, .cont-3,.cont-4 {width: 100%; padding: 0;} }
  951. .pagination{
  952. display: inline-block;
  953. padding: 0 12px;
  954. margin-bottom: 0;
  955. font-size: 0.9em;
  956. font-weight: normal;
  957. line-height: 2.44em;
  958. text-align: center;
  959. vertical-align: middle;
  960. border: 1px solid #ccc;
  961. color: #333;
  962. background-color: #fff;
  963. border-left-width: 0;
  964. }
  965. .pagination > input[type="text"] {
  966. line-height: 1.3em;
  967. position: relative;
  968. text-align: center;
  969. display: inline-block;
  970. color: #555;
  971. background-color: #fff;
  972. background-image: none;
  973. border-left: 0 solid #ccc;
  974. border-right: 0 solid #ccc;
  975. border-top: 0 solid #ccc;
  976. border-bottom: 0 solid #ccc;
  977. border-radius: 0;
  978. }
  979. #dload_history {
  980. position: relative;
  981. width: 206px;
  982. height: 35px;
  983. float: right;
  984. }
  985. #get-cert, #set-cert {
  986. position: relative;
  987. width: 183px;
  988. height: 35px;
  989. }
  990. #bl_text {
  991. position: relative;
  992. z-index: 2;
  993. }
  994. #bl_fill {
  995. width: 0;
  996. height: 5px;
  997. background-color: #fff;
  998. position: absolute;
  999. top: 28px;
  1000. left: 0;
  1001. z-index: 1;
  1002. }
  1003. #get-cert div {
  1004. background-color: #666 !important;
  1005. }
  1006. .btn {
  1007. display: inline-block;
  1008. padding: 6px 12px;
  1009. margin-bottom: 0;
  1010. font-size: 0.9em;
  1011. font-weight: normal;
  1012. line-height: 1.6em;
  1013. text-align: center;
  1014. white-space: nowrap;
  1015. vertical-align: middle;
  1016. -ms-touch-action: manipulation;
  1017. touch-action: manipulation;
  1018. cursor: pointer;
  1019. -webkit-user-select: none;
  1020. -moz-user-select: none;
  1021. -ms-user-select: none;
  1022. user-select: none;
  1023. background-image: none;
  1024. border: 1px solid transparent;
  1025. border-radius: 0;
  1026. }
  1027. .btn:focus,
  1028. .btn:active:focus,
  1029. .btn.active:focus,
  1030. .btn.focus,
  1031. .btn:active.focus,
  1032. .btn.active.focus {
  1033. outline: thin dotted;
  1034. outline: 5px auto -webkit-focus-ring-color;
  1035. outline-offset: -2px;
  1036. }
  1037. .btn:hover,
  1038. .btn:focus,
  1039. .btn.focus {
  1040. color: #333;
  1041. text-decoration: none;
  1042. }
  1043. .btn:active,
  1044. .btn.active {
  1045. background-image: none;
  1046. outline: 0;
  1047. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1048. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1049. }
  1050. .btn.disabled,
  1051. .btn[disabled],
  1052. fieldset[disabled] .btn {
  1053. pointer-events: none;
  1054. cursor: not-allowed;
  1055. filter: alpha(opacity=65);
  1056. -webkit-box-shadow: none;
  1057. box-shadow: none;
  1058. opacity: .65;
  1059. }
  1060. .btn-default {
  1061. color: #333;
  1062. background-color: #fff;
  1063. border-color: #ccc;
  1064. transition: all 0.3s ease-in-out;
  1065. }
  1066. .btn-default:hover,
  1067. .btn-default:focus,
  1068. .btn-default.focus,
  1069. .btn-default:active,
  1070. .btn-default.active,
  1071. .open > .dropdown-toggle.btn-default {
  1072. color: #333;
  1073. background-color: #e6e6e6;
  1074. border-color: #adadad;
  1075. }
  1076. .btn-default:active,
  1077. .btn-default.active,
  1078. .open > .dropdown-toggle.btn-default {
  1079. background-image: none;
  1080. }
  1081. .btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active
  1082. {background-color: #fff;border-color: #ccc;}
  1083. .btn-default .badge {
  1084. color: #fff;
  1085. background-color: #333;
  1086. }
  1087. .btn-primary {
  1088. color: #fff;
  1089. background-color: #337ab7;
  1090. border-color: #3d7ab7;
  1091. }
  1092. .btn-primary:hover,
  1093. .btn-primary:focus,
  1094. .btn-primary.focus,
  1095. .btn-primary:active,
  1096. .btn-primary.active,
  1097. .open > .dropdown-toggle.btn-primary {
  1098. color: #fff;
  1099. background-color: #2e6ea5;
  1100. border-color: #2C5884;
  1101. }
  1102. .btn-primary:active,
  1103. .btn-primary.active,
  1104. .open > .dropdown-toggle.btn-primary {
  1105. background-image: none;
  1106. }
  1107. .btn-primary.disabled,
  1108. .btn-primary[disabled],
  1109. fieldset[disabled] .btn-primary,
  1110. .btn-primary.disabled:hover,
  1111. .btn-primary[disabled]:hover,
  1112. fieldset[disabled] .btn-primary:hover,
  1113. .btn-primary.disabled:focus,
  1114. .btn-primary[disabled]:focus,
  1115. fieldset[disabled] .btn-primary:focus,
  1116. .btn-primary.disabled.focus,
  1117. .btn-primary[disabled].focus,
  1118. fieldset[disabled] .btn-primary.focus,
  1119. .btn-primary.disabled:active,
  1120. .btn-primary[disabled]:active,
  1121. fieldset[disabled] .btn-primary:active,
  1122. .btn-primary.disabled.active,
  1123. .btn-primary[disabled].active,
  1124. fieldset[disabled] .btn-primary.active {
  1125. background-color: #337ab7;
  1126. border-color: #3d7ab7;
  1127. }
  1128. .btn-primary .badge {
  1129. color: #337ab7;
  1130. background-color: #fff;
  1131. }
  1132. /*.btn-success {
  1133. color: #fff;
  1134. background-color: #5cb85c;
  1135. border-color: #4cae4c;
  1136. }
  1137. .btn-success:hover,
  1138. .btn-success:focus,
  1139. .btn-success.focus,
  1140. .btn-success:active,
  1141. .btn-success.active,
  1142. .open > .dropdown-toggle.btn-success {
  1143. color: #fff;
  1144. background-color: #449d44;
  1145. border-color: #398439;
  1146. }
  1147. .btn-success:active,
  1148. .btn-success.active,
  1149. .open > .dropdown-toggle.btn-success {
  1150. background-image: none;
  1151. }
  1152. .btn-success.disabled,
  1153. .btn-success[disabled],
  1154. fieldset[disabled] .btn-success,
  1155. .btn-success.disabled:hover,
  1156. .btn-success[disabled]:hover,
  1157. fieldset[disabled] .btn-success:hover,
  1158. .btn-success.disabled:focus,
  1159. .btn-success[disabled]:focus,
  1160. fieldset[disabled] .btn-success:focus,
  1161. .btn-success.disabled.focus,
  1162. .btn-success[disabled].focus,
  1163. fieldset[disabled] .btn-success.focus,
  1164. .btn-success.disabled:active,
  1165. .btn-success[disabled]:active,
  1166. fieldset[disabled] .btn-success:active,
  1167. .btn-success.disabled.active,
  1168. .btn-success[disabled].active,
  1169. fieldset[disabled] .btn-success.active {
  1170. background-color: #5cb85c;
  1171. border-color: #4cae4c;
  1172. }
  1173. .btn-success .badge {
  1174. color: #5cb85c;
  1175. background-color: #fff;
  1176. }
  1177. .btn-info {
  1178. color: #fff;
  1179. background-color: #5bc0de;
  1180. border-color: #46b8da;
  1181. }
  1182. .btn-info:hover,
  1183. .btn-info:focus,
  1184. .btn-info.focus,
  1185. .btn-info:active,
  1186. .btn-info.active,
  1187. .open > .dropdown-toggle.btn-info {
  1188. color: #fff;
  1189. background-color: #31b0d5;
  1190. border-color: #269abc;
  1191. }
  1192. .btn-info:active,
  1193. .btn-info.active,
  1194. .open > .dropdown-toggle.btn-info {
  1195. background-image: none;
  1196. }
  1197. .btn-info.disabled,
  1198. .btn-info[disabled],
  1199. fieldset[disabled] .btn-info,
  1200. .btn-info.disabled:hover,
  1201. .btn-info[disabled]:hover,
  1202. fieldset[disabled] .btn-info:hover,
  1203. .btn-info.disabled:focus,
  1204. .btn-info[disabled]:focus,
  1205. fieldset[disabled] .btn-info:focus,
  1206. .btn-info.disabled.focus,
  1207. .btn-info[disabled].focus,
  1208. fieldset[disabled] .btn-info.focus,
  1209. .btn-info.disabled:active,
  1210. .btn-info[disabled]:active,
  1211. fieldset[disabled] .btn-info:active,
  1212. .btn-info.disabled.active,
  1213. .btn-info[disabled].active,
  1214. fieldset[disabled] .btn-info.active {
  1215. background-color: #5bc0de;
  1216. border-color: #46b8da;
  1217. }
  1218. .btn-info .badge {
  1219. color: #5bc0de;
  1220. background-color: #fff;
  1221. }
  1222. .btn-warning {
  1223. color: #fff;
  1224. background-color: #f0ad4e;
  1225. border-color: #eea236;
  1226. }
  1227. .btn-warning:hover,
  1228. .btn-warning:focus,
  1229. .btn-warning.focus,
  1230. .btn-warning:active,
  1231. .btn-warning.active,
  1232. .open > .dropdown-toggle.btn-warning {
  1233. color: #fff;
  1234. background-color: #ec971f;
  1235. border-color: #d58512;
  1236. }
  1237. .btn-warning:active,
  1238. .btn-warning.active,
  1239. .open > .dropdown-toggle.btn-warning {
  1240. background-image: none;
  1241. }
  1242. .btn-warning.disabled,
  1243. .btn-warning[disabled],
  1244. fieldset[disabled] .btn-warning,
  1245. .btn-warning.disabled:hover,
  1246. .btn-warning[disabled]:hover,
  1247. fieldset[disabled] .btn-warning:hover,
  1248. .btn-warning.disabled:focus,
  1249. .btn-warning[disabled]:focus,
  1250. fieldset[disabled] .btn-warning:focus,
  1251. .btn-warning.disabled.focus,
  1252. .btn-warning[disabled].focus,
  1253. fieldset[disabled] .btn-warning.focus,
  1254. .btn-warning.disabled:active,
  1255. .btn-warning[disabled]:active,
  1256. fieldset[disabled] .btn-warning:active,
  1257. .btn-warning.disabled.active,
  1258. .btn-warning[disabled].active,
  1259. fieldset[disabled] .btn-warning.active {
  1260. background-color: #f0ad4e;
  1261. border-color: #eea236;
  1262. }
  1263. .btn-warning .badge {
  1264. color: #f0ad4e;
  1265. background-color: #fff;
  1266. }
  1267. .btn-danger {
  1268. color: #fff;
  1269. background-color: #d9534f;
  1270. border-color: #d43f3a;
  1271. }
  1272. .btn-danger:hover,
  1273. .btn-danger:focus,
  1274. .btn-danger.focus,
  1275. .btn-danger:active,
  1276. .btn-danger.active,
  1277. .open > .dropdown-toggle.btn-danger {
  1278. color: #fff;
  1279. background-color: #c9302c;
  1280. border-color: #ac2925;
  1281. }
  1282. .btn-danger:active,
  1283. .btn-danger.active,
  1284. .open > .dropdown-toggle.btn-danger {
  1285. background-image: none;
  1286. }
  1287. .btn-danger.disabled,
  1288. .btn-danger[disabled],
  1289. fieldset[disabled] .btn-danger,
  1290. .btn-danger.disabled:hover,
  1291. .btn-danger[disabled]:hover,
  1292. fieldset[disabled] .btn-danger:hover,
  1293. .btn-danger.disabled:focus,
  1294. .btn-danger[disabled]:focus,
  1295. fieldset[disabled] .btn-danger:focus,
  1296. .btn-danger.disabled.focus,
  1297. .btn-danger[disabled].focus,
  1298. fieldset[disabled] .btn-danger.focus,
  1299. .btn-danger.disabled:active,
  1300. .btn-danger[disabled]:active,
  1301. fieldset[disabled] .btn-danger:active,
  1302. .btn-danger.disabled.active,
  1303. .btn-danger[disabled].active,
  1304. fieldset[disabled] .btn-danger.active {
  1305. background-color: #d9534f;
  1306. border-color: #d43f3a;
  1307. }
  1308. .btn-danger .badge {
  1309. color: #d9534f;
  1310. background-color: #fff;
  1311. }*/
  1312. .btn-primary-inverted {
  1313. color: #3d7ab7;
  1314. background-color: transparent;
  1315. border-color: #3d7ab7;
  1316. transition: all 0.3s ease-in-out;
  1317. }
  1318. .btn-primary-inverted:hover,
  1319. .btn-primary-inverted:focus,
  1320. .btn-primary-inverted.focus,
  1321. .btn-primary-inverted:active,
  1322. .btn-primary-inverted.active,
  1323. .open > .dropdown-toggle.btn-primary-inverted {
  1324. color: #fff;
  1325. background-color: #2e6ea5;
  1326. border-color: #2C5884;
  1327. }
  1328. .btn-primary-inverted:active,
  1329. .btn-primary-inverted.active,
  1330. .open > .dropdown-toggle.btn-primary-inverted {
  1331. background-image: none;
  1332. }
  1333. .btn-primary-inverted.disabled,
  1334. .btn-primary-inverted[disabled],
  1335. fieldset[disabled] .btn-primary-inverted,
  1336. .btn-primary-inverted.disabled:hover,
  1337. .btn-primary-inverted[disabled]:hover,
  1338. fieldset[disabled] .btn-primary-inverted:hover,
  1339. .btn-primary-inverted.disabled:focus,
  1340. .btn-primary-inverted[disabled]:focus,
  1341. fieldset[disabled] .btn-primary-inverted:focus,
  1342. .btn-primary-inverted.disabled.focus,
  1343. .btn-primary-inverted[disabled].focus,
  1344. fieldset[disabled] .btn-primary-inverted.focus,
  1345. .btn-primary-inverted.disabled:active,
  1346. .btn-primary-inverted[disabled]:active,
  1347. fieldset[disabled] .btn-primary-inverted:active,
  1348. .btn-primary-inverted.disabled.active,
  1349. .btn-primary-inverted[disabled].active,
  1350. fieldset[disabled] .btn-primary-inverted.active {
  1351. color: #fff;
  1352. background-color: #337ab7;
  1353. border-color: #3d7ab7;
  1354. }
  1355. .btn-primary-inverted .badge {
  1356. color: #337ab7;
  1357. background-color: #fff;
  1358. }
  1359. .btn-success-inverted {
  1360. color: #4cae4c;
  1361. background-color: transparent;
  1362. border-color: #4cae4c;
  1363. transition: all 0.3s ease-in-out;
  1364. }
  1365. .btn-success-inverted:hover,
  1366. .btn-success-inverted:focus,
  1367. .btn-success-inverted.focus,
  1368. .btn-success-inverted:active,
  1369. .btn-success-inverted.active,
  1370. .open > .dropdown-toggle.btn-success-inverted {
  1371. color: #fff;
  1372. background-color: #449d44;
  1373. border-color: #398439;
  1374. }
  1375. .btn-success-inverted:active,
  1376. .btn-success-inverted.active,
  1377. .open > .dropdown-toggle.btn-success-inverted {
  1378. background-image: none;
  1379. }
  1380. .btn-success-inverted.disabled,
  1381. .btn-success-inverted[disabled],
  1382. fieldset[disabled] .btn-success-inverted,
  1383. .btn-success-inverted.disabled:hover,
  1384. .btn-success-inverted[disabled]:hover,
  1385. fieldset[disabled] .btn-success-inverted:hover,
  1386. .btn-success-inverted.disabled:focus,
  1387. .btn-success-inverted[disabled]:focus,
  1388. fieldset[disabled] .btn-success-inverted:focus,
  1389. .btn-success-inverted.disabled.focus,
  1390. .btn-success-inverted[disabled].focus,
  1391. fieldset[disabled] .btn-success-inverted.focus,
  1392. .btn-success-inverted.disabled:active,
  1393. .btn-success-inverted[disabled]:active,
  1394. fieldset[disabled] .btn-success-inverted:active,
  1395. .btn-success-inverted.disabled.active,
  1396. .btn-success-inverted[disabled].active,
  1397. fieldset[disabled] .btn-success-inverted.active {
  1398. color: #fff;
  1399. background-color: #5cb85c;
  1400. border-color: #4cae4c;
  1401. }
  1402. .btn-success-inverted .badge {
  1403. color: #5cb85c;
  1404. background-color: #fff;
  1405. }
  1406. .btn-info-inverted {
  1407. color: #46b8da;
  1408. background-color: transparent;
  1409. border-color: #46b8da;
  1410. transition: all 0.3s ease-in-out;
  1411. }
  1412. .btn-info-inverted:hover,
  1413. .btn-info-inverted:focus,
  1414. .btn-info-inverted.focus,
  1415. .btn-info-inverted:active,
  1416. .btn-info-inverted.active,
  1417. .open > .dropdown-toggle.btn-info-inverted {
  1418. color: #fff;
  1419. background-color: #31b0d5;
  1420. border-color: #269abc;
  1421. }
  1422. .btn-info-inverted:active,
  1423. .btn-info-inverted.active,
  1424. .open > .dropdown-toggle.btn-info-inverted {
  1425. background-image: none;
  1426. }
  1427. .btn-info-inverted.disabled,
  1428. .btn-info-inverted[disabled],
  1429. fieldset[disabled] .btn-info-inverted,
  1430. .btn-info-inverted.disabled:hover,
  1431. .btn-info-inverted[disabled]:hover,
  1432. fieldset[disabled] .btn-info-inverted:hover,
  1433. .btn-info-inverted.disabled:focus,
  1434. .btn-info-inverted[disabled]:focus,
  1435. fieldset[disabled] .btn-info-inverted:focus,
  1436. .btn-info-inverted.disabled.focus,
  1437. .btn-info-inverted[disabled].focus,
  1438. fieldset[disabled] .btn-info-inverted.focus,
  1439. .btn-info-inverted.disabled:active,
  1440. .btn-info-inverted[disabled]:active,
  1441. fieldset[disabled] .btn-info-inverted:active,
  1442. .btn-info-inverted.disabled.active,
  1443. .btn-info-inverted[disabled].active,
  1444. fieldset[disabled] .btn-info-inverted.active {
  1445. color: #fff;
  1446. background-color: #5bc0de;
  1447. border-color: #46b8da;
  1448. }
  1449. .btn-info-inverted .badge {
  1450. color: #5bc0de;
  1451. background-color: #fff;
  1452. }
  1453. .btn-warning-inverted {
  1454. color: #eea236;
  1455. background-color: transparent;
  1456. border-color: #eea236;
  1457. transition: all 0.3s ease-in-out;
  1458. }
  1459. .btn-warning-inverted:hover,
  1460. .btn-warning-inverted:focus,
  1461. .btn-warning-inverted.focus,
  1462. .btn-warning-inverted:active,
  1463. .btn-warning-inverted.active,
  1464. .open > .dropdown-toggle.btn-warning-inverted {
  1465. color: #fff;
  1466. background-color: #ec971f;
  1467. border-color: #d58512;
  1468. }
  1469. .btn-warning-inverted:active,
  1470. .btn-warning-inverted.active,
  1471. .open > .dropdown-toggle.btn-warning-inverted {
  1472. background-image: none;
  1473. }
  1474. .btn-warning-inverted.disabled,
  1475. .btn-warning-inverted[disabled],
  1476. fieldset[disabled] .btn-warning-inverted,
  1477. .btn-warning-inverted.disabled:hover,
  1478. .btn-warning-inverted[disabled]:hover,
  1479. fieldset[disabled] .btn-warning-inverted:hover,
  1480. .btn-warning-inverted.disabled:focus,
  1481. .btn-warning-inverted[disabled]:focus,
  1482. fieldset[disabled] .btn-warning-inverted:focus,
  1483. .btn-warning-inverted.disabled.focus,
  1484. .btn-warning-inverted[disabled].focus,
  1485. fieldset[disabled] .btn-warning-inverted.focus,
  1486. .btn-warning-inverted.disabled:active,
  1487. .btn-warning-inverted[disabled]:active,
  1488. fieldset[disabled] .btn-warning-inverted:active,
  1489. .btn-warning-inverted.disabled.active,
  1490. .btn-warning-inverted[disabled].active,
  1491. fieldset[disabled] .btn-warning-inverted.active {
  1492. color: #fff;
  1493. background-color: #f0ad4e;
  1494. border-color: #eea236;
  1495. }
  1496. .btn-warning-inverted .badge {
  1497. color: #f0ad4e;
  1498. background-color: #fff;
  1499. }
  1500. .btn-danger-inverted {
  1501. color: #d43f3a;
  1502. background-color: transparent;
  1503. border-color: #d43f3a;
  1504. transition: all 0.3s ease-in-out;
  1505. }
  1506. .btn-danger-inverted:hover,
  1507. .btn-danger-inverted:focus,
  1508. .btn-danger-inverted.focus,
  1509. .btn-danger-inverted:active,
  1510. .btn-danger-inverted.active,
  1511. .open > .dropdown-toggle.btn-danger-inverted {
  1512. color: #fff;
  1513. background-color: #c9302c;
  1514. border-color: #ac2925;
  1515. }
  1516. .btn-danger-inverted:active,
  1517. .btn-danger-inverted.active,
  1518. .open > .dropdown-toggle.btn-danger-inverted {
  1519. background-image: none;
  1520. }
  1521. .btn-danger-inverted.disabled,
  1522. .btn-danger-inverted[disabled],
  1523. fieldset[disabled] .btn-danger-inverted,
  1524. .btn-danger-inverted.disabled:hover,
  1525. .btn-danger-inverted[disabled]:hover,
  1526. fieldset[disabled] .btn-danger-inverted:hover,
  1527. .btn-danger-inverted.disabled:focus,
  1528. .btn-danger-inverted[disabled]:focus,
  1529. fieldset[disabled] .btn-danger-inverted:focus,
  1530. .btn-danger-inverted.disabled.focus,
  1531. .btn-danger-inverted[disabled].focus,
  1532. fieldset[disabled] .btn-danger-inverted.focus,
  1533. .btn-danger-inverted.disabled:active,
  1534. .btn-danger-inverted[disabled]:active,
  1535. fieldset[disabled] .btn-danger-inverted:active,
  1536. .btn-danger-inverted.disabled.active,
  1537. .btn-danger-inverted[disabled].active,
  1538. fieldset[disabled] .btn-danger-inverted.active {
  1539. color: #fff;
  1540. background-color: #d9534f;
  1541. border-color: #d43f3a;
  1542. }
  1543. .btn-danger-inverted .badge {
  1544. color: #d9534f;
  1545. background-color: #fff;
  1546. }
  1547. .btn-link {
  1548. font-weight: normal;
  1549. color: #337ab7;
  1550. border-radius: 0;
  1551. }
  1552. .btn-link,
  1553. .btn-link:active,
  1554. .btn-link.active,
  1555. .btn-link[disabled],
  1556. fieldset[disabled] .btn-link {
  1557. background-color: transparent;
  1558. -webkit-box-shadow: none;
  1559. box-shadow: none;
  1560. }
  1561. .btn-link,
  1562. .btn-link:hover,
  1563. .btn-link:focus,
  1564. .btn-link:active {
  1565. border-color: transparent;
  1566. }
  1567. .btn-link:hover,
  1568. .btn-link:focus {
  1569. color: #ec051a;
  1570. text-decoration: underline;
  1571. background-color: transparent;
  1572. }
  1573. .btn-link[disabled]:hover,
  1574. fieldset[disabled] .btn-link:hover,
  1575. .btn-link[disabled]:focus,
  1576. fieldset[disabled] .btn-link:focus {
  1577. color: #777;
  1578. text-decoration: none;
  1579. }
  1580. label {
  1581. line-height: 1.3;
  1582. display: inline-block;
  1583. font-size: .9em;
  1584. padding-top: 3px;
  1585. color: #666;
  1586. max-width: 100%;
  1587. margin-bottom: 5px;
  1588. }
  1589. .checkbox{
  1590. display: block;
  1591. padding-top: 5px;
  1592. }
  1593. .w1h1ie {
  1594. width: 100%;
  1595. height: 100%;
  1596. }
  1597. .btn-group,
  1598. .btn-group-vertical {
  1599. position: relative;
  1600. display: inline-block;
  1601. vertical-align: middle;
  1602. }
  1603. .btn-group > .btn,
  1604. .btn-group > .pagination,
  1605. .btn-group-vertical > .btn {
  1606. position: relative;
  1607. float: left;
  1608. }
  1609. .btn-group > .btn:hover,
  1610. .btn-group-vertical > .btn:hover,
  1611. .btn-group > .btn:focus,
  1612. .btn-group-vertical > .btn:focus,
  1613. .btn-group > .btn:active,
  1614. .btn-group-vertical > .btn:active,
  1615. .btn-group > .btn.active,
  1616. .btn-group-vertical > .btn.active {
  1617. z-index: 2;
  1618. }
  1619. .btn-group .pagination + .btn,
  1620. .btn-group .btn + .btn,
  1621. .btn-group .btn + .btn-group,
  1622. .btn-group .btn-group + .btn,
  1623. .btn-group .btn-group + .btn-group {
  1624. margin-left: -1px;
  1625. }
  1626. .btn-toolbar {
  1627. margin-left: -5px;
  1628. }
  1629. .btn-toolbar .btn,
  1630. .btn-toolbar .btn-group,
  1631. .btn-toolbar .input-group {
  1632. float: left;
  1633. }
  1634. .btn-toolbar > .btn,
  1635. .btn-toolbar > .btn-group,
  1636. .btn-toolbar > .input-group {
  1637. margin-left: 5px;
  1638. }
  1639. .btn-group > .pagination:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  1640. border-radius: 0;
  1641. }
  1642. .btn-group > .pagination:first-child {
  1643. margin-left: 0;
  1644. }
  1645. .btn-group > .pagination:first-child:not(:last-child):not(.dropdown-toggle) {
  1646. border-top-right-radius: 0;
  1647. border-bottom-right-radius: 0;
  1648. }
  1649. .btn-group > .pagination:last-child:not(:first-child),
  1650. .btn-group > .dropdown-toggle:not(:first-child) {
  1651. border-top-left-radius: 0;
  1652. border-bottom-left-radius: 0;
  1653. }
  1654. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  1655. border-radius: 0;
  1656. }
  1657. .btn-group > .btn:first-child {
  1658. margin-left: 0;
  1659. }
  1660. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  1661. border-top-right-radius: 0;
  1662. border-bottom-right-radius: 0;
  1663. }
  1664. .btn-group > .btn:last-child:not(:first-child),
  1665. .btn-group > .dropdown-toggle:not(:first-child) {
  1666. border-top-left-radius: 0;
  1667. border-bottom-left-radius: 0;
  1668. }
  1669. .btn-group > .btn-group {
  1670. float: left;
  1671. }
  1672. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  1673. border-radius: 0;
  1674. }
  1675. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  1676. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  1677. border-top-right-radius: 0;
  1678. border-bottom-right-radius: 0;
  1679. }
  1680. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  1681. border-top-left-radius: 0;
  1682. border-bottom-left-radius: 0;
  1683. }
  1684. .btn-group .dropdown-toggle:active,
  1685. .btn-group.open .dropdown-toggle {
  1686. outline: 0;
  1687. }
  1688. .btn-group > .btn + .dropdown-toggle {
  1689. padding-right: 8px;
  1690. padding-left: 8px;
  1691. }
  1692. .btn-group > .btn-lg + .dropdown-toggle {
  1693. padding-right: 12px;
  1694. padding-left: 12px;
  1695. }
  1696. .btn-group.open .dropdown-toggle {
  1697. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1698. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1699. }
  1700. .btn-group.open .dropdown-toggle.btn-link {
  1701. -webkit-box-shadow: none;
  1702. box-shadow: none;
  1703. }
  1704. .btn-sm,
  1705. .btn-group-sm > .btn {
  1706. padding: 5px 10px;
  1707. font-size: 12px;
  1708. line-height: 1.5;
  1709. border-radius: 0;
  1710. }
  1711. .btn-xs,
  1712. .btn-group-xs > .btn {
  1713. padding: 1px 5px;
  1714. font-size: 12px;
  1715. line-height: 1.5;
  1716. border-radius: 0;
  1717. }
  1718. a.btn {text-decoration: none;}
  1719. [role="button"] {cursor: pointer;}
  1720. div.tabset {
  1721. margin:1em 0;
  1722. width:40em; /* need width for ie < 8 */
  1723. min-width: 100%;
  1724. }
  1725. div.tabpane {
  1726. display:none;
  1727. clear:both;
  1728. padding:10px 15px;
  1729. border:solid 1px #e7e7e7;
  1730. background-color: #fff;
  1731. box-shadow:0 1px 5px rgba(0,0,0,0.15);
  1732. }
  1733. div.tabpane:after{content: "&nbsp;"; visibility: hidden;}
  1734. div.activePane {
  1735. display:block;
  1736. z-index: 2;
  1737. overflow: hidden;
  1738. }
  1739. ul.tabnavs {
  1740. display:block; /* display:none initially */
  1741. margin:0 0 -1px 0;
  1742. padding:0 10px;
  1743. overflow: hidden;
  1744. list-style:none;
  1745. width: 100%;
  1746. }
  1747. ul.tabnavs li {
  1748. display:inline;
  1749. z-index: 3;
  1750. }
  1751. ul.tabnavs li a {
  1752. text-decoration:none;
  1753. background-color:#f8f8f8;
  1754. border:solid 1px #e7e7e7;
  1755. padding:10px 15px;
  1756. margin:0 -10px 0 0; /* gap between tabs */
  1757. float:left; width:auto;
  1758. position:relative; top:1px; /* brings down over pane border-top */
  1759. }
  1760. ul.tabnavs li a:link, ul.tabnavs li a:visited {
  1761. color:#868686;
  1762. }
  1763. ul.tabnavs li a:hover {
  1764. background-color:#fff;
  1765. }
  1766. ul.tabnavs li a.activeTab:link,
  1767. ul.tabnavs li a.activeTab:visited {
  1768. color: #337ab7;
  1769. background-color:#fff;
  1770. border-bottom: 1px solid #fff;
  1771. box-shadow: 0 1px 5px rgba(0,0,0,0.15);
  1772. z-index: 1;
  1773. }
  1774. @media only screen
  1775. and (min-device-width : 375px)
  1776. and (max-device-width : 667px) {
  1777. ul.tabnavs {display: none;}
  1778. div.tabpane {display: block; border: none; margin-bottom: 10px;}
  1779. div.tabset {width: 100%;}
  1780. }
  1781. @media only screen
  1782. and (max-device-width : 768px){
  1783. ul.tabnavs {display: none;}
  1784. div.tabpane {display: block; border: none; margin-bottom: 10px;}
  1785. div.tabset {width: 100%;}
  1786. #controls {text-align: center; width: 100%;}
  1787. #controls .btn-group {margin-bottom: 20px; display: block;}
  1788. #controls .btn-group > .btn {line-height: 30px; padding: 5px 10px; width: 12.4%}
  1789. #controls > .btn {width: 100%; margin-top: 20px; margin-bottom: 20px;}
  1790. #controls .pagination input[type='text']{width: 50px; height: 100%; margin-right: 5px;}
  1791. #controls .pagination {line-height: 2.84em; width: 43%;}
  1792. }
  1793. ul#validation-box{
  1794. display: none;
  1795. padding: 10px 30px;
  1796. background: rgba(235, 69, 69, 0.80);
  1797. border: 1px solid rgba(235, 69, 69, 1);
  1798. color: #fff;
  1799. }
  1800. .form-group {
  1801. display: inline-block;
  1802. vertical-align: middle;
  1803. margin: -3px -5px 10px 0 !important;
  1804. }
  1805. .form-control {
  1806. display: block;
  1807. width: 100%;
  1808. height: 34px;
  1809. padding: 6px 12px;
  1810. font-size: 14px;
  1811. line-height: 1.42857143;
  1812. color: #555;
  1813. background-color: #fff;
  1814. background-image: none;
  1815. border: 1px solid #ccc;
  1816. border-radius: 0;
  1817. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1818. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1819. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1820. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1821. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1822. }
  1823. .form-control:focus {
  1824. border-color: #66afe9;
  1825. outline: 0;
  1826. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  1827. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  1828. }
  1829. .form-control::-moz-placeholder {color: #999;opacity: 1;}
  1830. .form-control:-ms-input-placeholder {color: #999;}
  1831. .form-control::-webkit-input-placeholder {color: #999;}
  1832. .form-control::-ms-expand {background-color: transparent;border: 0;}
  1833. .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {background-color: #eee;opacity: 1;}
  1834. .form-control[disabled],fieldset[disabled] .form-control {cursor: not-allowed;}
  1835. textarea.form-control {height: auto;}
  1836. input[type="search"] {-webkit-appearance: none;}
  1837. @media (min-width: 768px) {
  1838. .form-inline .form-group {
  1839. display: inline-block;
  1840. margin-bottom: 0;
  1841. vertical-align: middle;
  1842. }
  1843. .form-inline .form-control {
  1844. display: inline-block;
  1845. width: auto;
  1846. vertical-align: middle;
  1847. }
  1848. .form-inline .form-control-static {
  1849. display: inline-block;
  1850. }
  1851. .form-inline .input-group {
  1852. display: inline-table;
  1853. vertical-align: middle;
  1854. }
  1855. .form-inline .input-group .input-group-addon,
  1856. .form-inline .input-group .input-group-btn,
  1857. .form-inline .input-group .form-control {
  1858. width: auto;
  1859. }
  1860. .form-inline .input-group > .form-control {
  1861. width: 100%;
  1862. }
  1863. .form-inline .control-label {
  1864. margin-bottom: 0;
  1865. vertical-align: middle;
  1866. }
  1867. .form-inline .radio,
  1868. .form-inline .checkbox {
  1869. display: inline-block;
  1870. margin-top: 0;
  1871. margin-bottom: 0;
  1872. vertical-align: middle;
  1873. }
  1874. .form-inline .radio label,
  1875. .form-inline .checkbox label {
  1876. padding-left: 0;
  1877. }
  1878. .form-inline .radio input[type="radio"],
  1879. .form-inline .checkbox input[type="checkbox"] {
  1880. position: relative;
  1881. margin-left: 0;
  1882. }
  1883. .form-inline .has-feedback .form-control-feedback {
  1884. top: 0;
  1885. }
  1886. }
  1887. .radio,
  1888. .checkbox {
  1889. position: relative;
  1890. display: block;
  1891. margin-top: 10px;
  1892. margin-bottom: 10px;
  1893. }
  1894. .radio label,
  1895. .checkbox label {
  1896. min-height: 20px;
  1897. padding-left: 20px;
  1898. margin-bottom: 0;
  1899. font-weight: normal;
  1900. cursor: pointer;
  1901. }
  1902. .radio input[type="radio"],
  1903. .radio-inline input[type="radio"],
  1904. .checkbox input[type="checkbox"],
  1905. .checkbox-inline input[type="checkbox"] {
  1906. position: absolute;
  1907. margin-top: 4px \9;
  1908. margin-left: -20px;
  1909. }
  1910. .radio + .radio,
  1911. .checkbox + .checkbox {
  1912. margin-top: -5px;
  1913. }
  1914. .radio-inline,
  1915. .checkbox-inline {
  1916. position: relative;
  1917. display: inline-block;
  1918. padding-left: 20px;
  1919. margin-bottom: 0;
  1920. font-weight: normal;
  1921. vertical-align: middle;
  1922. cursor: pointer;
  1923. }
  1924. .radio-inline + .radio-inline,
  1925. .checkbox-inline + .checkbox-inline {
  1926. margin-top: 0;
  1927. margin-left: 10px;
  1928. }
  1929. input { line-height: normal; }
  1930. input[type="radio"][disabled],
  1931. input[type="checkbox"][disabled],
  1932. input[type="radio"].disabled,
  1933. input[type="checkbox"].disabled,
  1934. fieldset[disabled] input[type="radio"],
  1935. fieldset[disabled] input[type="checkbox"] {
  1936. cursor: not-allowed;
  1937. }
  1938. .radio-inline.disabled,
  1939. .checkbox-inline.disabled,
  1940. fieldset[disabled] .radio-inline,
  1941. fieldset[disabled] .checkbox-inline {
  1942. cursor: not-allowed;
  1943. }
  1944. .radio.disabled label,
  1945. .checkbox.disabled label,
  1946. fieldset[disabled] .radio label,
  1947. fieldset[disabled] .checkbox label {
  1948. cursor: not-allowed;
  1949. }
  1950. .form-control-static {
  1951. min-height: 34px;
  1952. padding-top: 7px;
  1953. padding-bottom: 7px;
  1954. margin-bottom: 0;
  1955. }
  1956. #count-wrap {
  1957. display: none;
  1958. position: fixed;
  1959. top: 0%;
  1960. left: 0%;
  1961. width: 100%;
  1962. height: 100%;
  1963. background-color: rgba(0,0,0,0.8);
  1964. z-index:1001;
  1965. }
  1966. #countdown{
  1967. display: none;
  1968. position: relative;
  1969. text-align: center;
  1970. top: 40%;
  1971. margin: 0 auto;
  1972. /* left: 33%;
  1973. width: 25%;*/
  1974. padding: 16px;
  1975. border: 16px solid #f0ad4e;
  1976. background-color: white;
  1977. box-shadow:0 1px 5px rgba(0,0,0,0.15);
  1978. z-index:102;
  1979. overflow: auto;
  1980. }
  1981. #checkUpdatePass,
  1982. #changePassword,
  1983. #uploadSettings,
  1984. #uploadCertificate,
  1985. #rectifiersConfig{
  1986. display: none;
  1987. position: relative;
  1988. text-align: center;
  1989. top: 30%;
  1990. margin: 0 auto;
  1991. width: 300px;
  1992. padding: 16px;
  1993. border: 5px solid #5cb85c;
  1994. background-color: white;
  1995. box-shadow:0 1px 5px rgba(0,0,0,0.15);
  1996. z-index:103;
  1997. overflow: auto;
  1998. }
  1999. #checkUpdatePass{
  2000. border: 5px solid #5cb85c;
  2001. }
  2002. #changePassword, #uploadSettings, #uploadCertificate{
  2003. border: 5px solid #337ab7;
  2004. }
  2005. .notify-box {
  2006. width: 100%;
  2007. text-align: center;
  2008. margin: 0 auto;
  2009. padding: 1em 0;
  2010. font-weight: 500;
  2011. }
  2012. #device-profilaction {
  2013. width: 100%;
  2014. display: none;
  2015. text-align: center;
  2016. margin: 0 auto;
  2017. padding: 1em 0;
  2018. background: #009966;
  2019. color: #fff;
  2020. font-weight: 500;
  2021. }
  2022. #row-batvolt1,
  2023. #row-batvolt2,
  2024. #row-batvolt3,
  2025. #row-batvolt4{
  2026. transition: all 1s ease-in-out;
  2027. }
  2028. #checkUpdatePass, #changePassword, #uploadSettings, #rectifiersConfig{
  2029. display: none;
  2030. position: relative;
  2031. text-align: center;
  2032. top: 30%;
  2033. margin: 0 auto;
  2034. width: 300px;
  2035. padding: 16px;
  2036. border: 5px solid #5cb85c;
  2037. background-color: white;
  2038. box-shadow:0 1px 5px rgba(0,0,0,0.15);
  2039. z-index:103;
  2040. overflow: auto;
  2041. }
  2042. #changePassword, #uploadSettings{
  2043. border: 5px solid #337ab7;
  2044. }
  2045. .subnav {
  2046. /*margin-bottom: 20px;*/
  2047. width: 100%;
  2048. height: 40px;
  2049. background-color: #fff;
  2050. /*border: 1px solid #fff;*/
  2051. }
  2052. .subnav .nav {
  2053. margin-bottom: 0;
  2054. }
  2055. .subnav .nav > li > a {
  2056. margin: 0;
  2057. color: #337ab7;
  2058. line-height: 20px;
  2059. padding-top: 10px;
  2060. padding-bottom: 10px;
  2061. text-decoration: none;
  2062. border-left: 1px solid #f5f5f5;
  2063. border-right: 1px solid #e5e5e5;
  2064. }
  2065. .subnav .nav > .active > a,
  2066. .subnav .nav > .active > a:hover {
  2067. padding-left: 11px;
  2068. color: #777;
  2069. background-color: #F1F1F1;
  2070. border-right-color: #ddd;
  2071. border-left: 0;
  2072. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
  2073. -moz-box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
  2074. box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
  2075. }
  2076. .subnav .nav > .active > a .caret,
  2077. .subnav .nav > .active > a:hover .caret {
  2078. border-top-color: #777;
  2079. }
  2080. .subnav .nav > li:first-child > a,
  2081. .subnav .nav > li:first-child > a:hover {
  2082. /*border-left: 0;*/
  2083. }
  2084. .subnav .nav > li:last-child > a {
  2085. border-right: 0;
  2086. }
  2087. .login-form{
  2088. margin: 0 auto;
  2089. padding:30px 30px;
  2090. width: 70%;
  2091. }
  2092. .login-form input[type='text'],
  2093. .login-form input[type='password']{
  2094. width: auto !important;
  2095. }
  2096. @media only screen and (max-width : 768px) {
  2097. .login-form label{
  2098. width: 100%;
  2099. margin-bottom:5px;
  2100. }
  2101. .login-form input[type='text'],
  2102. .login-form input[type='password']{
  2103. width: 100% !important;
  2104. margin-bottom:10px;
  2105. padding: 0.9em;
  2106. border-radius: 0;
  2107. }
  2108. .login-form input[type='submit'] {
  2109. width: 100%;
  2110. padding: 0.9em;
  2111. }
  2112. .mw-90 {
  2113. max-width: 90%;
  2114. }
  2115. div > .logo{
  2116. margin-bottom: 0;
  2117. }
  2118. .subnav {
  2119. position: static;
  2120. top: auto;
  2121. z-index: auto;
  2122. width: 100%;
  2123. height: auto;
  2124. background: #fff;
  2125. -webkit-box-shadow: none;
  2126. -moz-box-shadow: none;
  2127. box-shadow: none;
  2128. font-size: 1em;
  2129. }
  2130. .subnav .navbar-nav{
  2131. float: none;
  2132. }
  2133. .subnav > ul {
  2134. padding: 0;
  2135. }
  2136. .subnav .nav > li {
  2137. /* float: left;
  2138. padding-right: 5px;*/
  2139. height: auto;
  2140. }
  2141. .subnav .nav > li > a {
  2142. border: 0;
  2143. padding-top: 10px;
  2144. padding-bottom: 10px;
  2145. }
  2146. /* .subnav .nav > li + li > a {
  2147. border-top: 1px solid #e5e5e5;
  2148. }*/
  2149. .subnav .navbar > li,
  2150. .subnav .navbar-nav > li {
  2151. /*float: left;*/
  2152. /*width: auto;*/
  2153. }
  2154. .subnav .nav > li:first-child > a,
  2155. .subnav .nav > li:first-child > a:hover {
  2156. border-radius: 0;
  2157. padding-left: 0;
  2158. }
  2159. .subnav .nav > .active > a,
  2160. .subnav .nav > .active > a:hover {
  2161. padding-left: 0px;
  2162. color: #777;
  2163. background-color: #F1F1F1;
  2164. border-right-color: #ddd;
  2165. }
  2166. label {
  2167. font-size: .8em;
  2168. line-height: 0.99;
  2169. }
  2170. }
  2171. @media (min-width: 980px) {
  2172. .subnav .nav > li:first-child > a,
  2173. .subnav .nav > li:first-child > a:hover {
  2174. -webkit-border-radius: 0;
  2175. -moz-border-radius: 0;
  2176. border-radius: 0;
  2177. }
  2178. }
  2179. .editable-click,
  2180. span .editable-click,
  2181. span .editable-click:hover {
  2182. cursor: pointer;
  2183. color: #08C;
  2184. text-decoration: none;
  2185. border-bottom: dashed 1px #08C;
  2186. }
  2187. #show_hide{
  2188. display: inline-block;
  2189. color: #747589;
  2190. cursor: pointer;
  2191. text-decoration: none;
  2192. border-bottom: dashed 1px #747589;
  2193. margin-bottom: 15px;
  2194. }
  2195. .btn-test {
  2196. width:100%;
  2197. border:0;
  2198. color: #fff;
  2199. background: #5cb85c;
  2200. border-radius: 0;
  2201. }
  2202. .btn-test:hover,
  2203. .btn-test:focus,
  2204. .btn-test.focus,
  2205. .btn-test:active,
  2206. .btn-test.active,
  2207. .open > .dropdown-toggle.btn-test {
  2208. color: #fff;
  2209. background-color: #449d44;
  2210. border-color: #F1F1F1;
  2211. }
  2212. .btn-test:active,
  2213. .btn-test.active,
  2214. .open > .dropdown-toggle.btn-test {
  2215. background-image: none;
  2216. }
  2217. .btn-test.disabled,
  2218. .btn-test[disabled],
  2219. fieldset[disabled] .btn-test,
  2220. .btn-test.disabled:hover,
  2221. .btn-test[disabled]:hover,
  2222. fieldset[disabled] .btn-test:hover,
  2223. .btn-test.disabled:focus,
  2224. .btn-test[disabled]:focus,
  2225. fieldset[disabled] .btn-test:focus,
  2226. .btn-test.disabled.focus,
  2227. .btn-test[disabled].focus,
  2228. fieldset[disabled] .btn-test.focus,
  2229. .btn-test.disabled:active,
  2230. .btn-test[disabled]:active,
  2231. fieldset[disabled] .btn-test:active,
  2232. .btn-test.disabled.active,
  2233. .btn-test[disabled].active,
  2234. fieldset[disabled] .btn-test.active {
  2235. background-color: #c1c1c1;
  2236. border-color: #4cae4c;
  2237. }
  2238. .grBG {
  2239. background: #f8f8f8;
  2240. color: #808080;
  2241. }
  2242. .badge {
  2243. display: inline-block;
  2244. min-width: 10px;
  2245. padding: 3px 7px;
  2246. font-size: 12px;
  2247. font-weight: bold;
  2248. line-height: 1;
  2249. color: #fff;
  2250. text-align: center;
  2251. white-space: nowrap;
  2252. vertical-align: middle;
  2253. background-color: #ddd;
  2254. }
  2255. .badge:empty {
  2256. display: none;
  2257. }
  2258. .btn .badge {
  2259. position: relative;
  2260. top: -1px;
  2261. }
  2262. a.badge:hover,
  2263. a.badge:focus {
  2264. color: #fff;
  2265. text-decoration: none;
  2266. cursor: pointer;
  2267. }
  2268. .badge-spec {
  2269. margin-right: 10px;
  2270. float: right;
  2271. }
  2272. @media (max-width: 30em) {
  2273. table.responsive-table.wrapper-default{
  2274. background-color: transparent !important;
  2275. box-shadow: none !important;
  2276. }
  2277. table.responsive-table thead {
  2278. display: none;
  2279. }
  2280. table.responsive-table td:nth-child(1){
  2281. border-top:none;
  2282. }
  2283. table.responsive-table td:nth-child(1):before {
  2284. content: 'АВАРИЯ';
  2285. }
  2286. table.responsive-table td:nth-child(2):before {
  2287. content: 'ПРИОРИТЕТ';
  2288. }
  2289. table.responsive-table td:nth-child(3):before {
  2290. content: 'РЕЛЕ';
  2291. }
  2292. table.responsive-table td:nth-child(4):before {
  2293. content: 'СОСТОЯНИЕ';
  2294. }
  2295. table.responsive-table td:nth-child(1),
  2296. table.responsive-table td:nth-child(2),
  2297. table.responsive-table td:nth-child(3),
  2298. table.responsive-table td:nth-child(4){
  2299. padding-left: 40%;
  2300. }
  2301. table.responsive-table td:nth-child(1):before,
  2302. table.responsive-table td:nth-child(2):before,
  2303. table.responsive-table td:nth-child(3):before,
  2304. table.responsive-table td:nth-child(4):before{
  2305. position: absolute;
  2306. left: .5em;
  2307. padding-left: 10px;
  2308. color: #333;
  2309. }
  2310. table.responsive-table tr,
  2311. table.responsive-table td {
  2312. display: block;
  2313. }
  2314. table.responsive-table tr {
  2315. position: relative;
  2316. margin-bottom: 1em;
  2317. background-color: #fff;
  2318. border-radius: 0;
  2319. box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  2320. }
  2321. table.responsive-table td {
  2322. border-top: none;
  2323. }
  2324. }
  2325. .upload-form{
  2326. position: relative;
  2327. margin:20px auto;
  2328. padding:30px;
  2329. background-color:#fff;
  2330. border-radius: 0;
  2331. box-shadow: 0 1px 5px rgba(0,0,0,0.15);
  2332. font-family:sans-serif;
  2333. }
  2334. .fileUpload {
  2335. position: relative;
  2336. overflow: hidden;
  2337. }
  2338. .fileUpload input.upload {
  2339. position: absolute;
  2340. top: 0;
  2341. right: 0;
  2342. margin: 0;
  2343. padding: 0;
  2344. opacity: 0;
  2345. filter: alpha(opacity=0);
  2346. font-size: 20px;
  2347. cursor: pointer;
  2348. }
  2349. button,
  2350. html input[type="button"],
  2351. input[type="reset"],
  2352. input[type="submit"] {
  2353. -webkit-appearance: button;
  2354. cursor: pointer;
  2355. }
  2356. option[disabled] {
  2357. background: #ddd;
  2358. }
  2359. /*button[disabled],html input[disabled] {cursor: default; background-color: rgb(235, 235, 228);}*/
  2360. button::-moz-focus-inner,input::-moz-focus-inner {padding: 0;border: 0;}
  2361. input {line-height: normal;}
  2362. input.file-name{
  2363. height: 37px;
  2364. font-size: 12px;
  2365. line-height: 1.5;
  2366. padding:3px 10px;
  2367. border: 1px solid #337ab7;
  2368. border-radius: 0;
  2369. display: block;
  2370. float: left;
  2371. }
  2372. input.login {
  2373. width: 280px;
  2374. height: 30px;
  2375. padding:3px 10px;
  2376. margin-bottom: 25px;
  2377. border: none;
  2378. border-radius: 0;
  2379. font-size: 12px;
  2380. line-height: 1.5;
  2381. }
  2382. .upload-wrapper{
  2383. padding:10px 0px 20px 5px;
  2384. width: 100%;
  2385. height: 39px
  2386. }
  2387. .fileUpload.btn {
  2388. float: left;
  2389. border: 1px solid;
  2390. border-radius: 0;
  2391. border-color: #3d7ab7;
  2392. }
  2393. .rect-config-list {
  2394. height: 200px;
  2395. overflow-y: auto;
  2396. overflow-x: hidden;
  2397. padding: 10px;
  2398. margin-bottom: 10px;
  2399. border: 1px solid #ddd;
  2400. }
  2401. .rect-config-list-item {
  2402. list-style: none;
  2403. text-align: left;
  2404. margin-bottom: 10px;
  2405. padding: .35em .65em;
  2406. border: 1px solid #ddd;
  2407. background: #eee;
  2408. }
  2409. /* SECTIONS ============================================================================= */
  2410. .section {
  2411. clear: both;
  2412. padding: 0px;
  2413. margin: 0px;
  2414. }
  2415. /* GROUPING ============================================================================= */
  2416. .group:before,
  2417. .group:after {
  2418. content:"";
  2419. display:table;
  2420. }
  2421. .group:after {
  2422. clear:both;
  2423. }
  2424. .group {
  2425. zoom:1; /* For IE 6/7 (trigger hasLayout) */
  2426. }
  2427. /* GRID COLUMN SETUP ==================================================================== */
  2428. .col {
  2429. display: block;
  2430. float:left;
  2431. margin: 1% 0 1% 1%;
  2432. }
  2433. /*.col:first-child { margin-left: 0; }*/ /* all browsers except IE6 and lower */
  2434. /* REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */
  2435. @media only screen and (max-width: 480px) {
  2436. .col {
  2437. margin: 1% 0 1% 0%;
  2438. }
  2439. }
  2440. /* GRID OF TWO ============================================================================= */
  2441. h4 {
  2442. color: #666;
  2443. }
  2444. .span_2_of_2 {
  2445. width: 100%;
  2446. }
  2447. .span_1_of_2 {
  2448. width: 48%;
  2449. }
  2450. /* GO FULL WIDTH AT LESS THAN 480 PIXELS */
  2451. @media only screen and (max-width: 480px) {
  2452. .span_2_of_2 {
  2453. width: 100%;
  2454. }
  2455. .span_1_of_2 {
  2456. width: 100%;
  2457. }
  2458. }
  2459. /* GRID OF THREE ============================================================================= */
  2460. .span_3_of_3 {
  2461. width: 100%;
  2462. }
  2463. .span_2_of_3 {
  2464. width: 66.13%;
  2465. }
  2466. .span_1_of_3 {
  2467. width: 32.26%;
  2468. }
  2469. /* GO FULL WIDTH AT LESS THAN 480 PIXELS */
  2470. @media only screen and (max-width: 480px) {
  2471. .span_3_of_3 {
  2472. width: 100%;
  2473. }
  2474. .span_2_of_3 {
  2475. width: 100%;
  2476. }
  2477. .span_1_of_3 {
  2478. width: 100%;
  2479. }
  2480. }
  2481. /* GRID OF FOUR ============================================================================= */
  2482. h4.span_4_of_4 {
  2483. margin: 0;
  2484. }
  2485. .span_4_of_4 {
  2486. width: 100%;
  2487. }
  2488. .span_3_of_4 {
  2489. width: 74.6%;
  2490. }
  2491. .span_2_of_4 {
  2492. width: 49.2%;
  2493. }
  2494. .span_1_of_4 {
  2495. width: 23.8%;
  2496. }
  2497. /* GO FULL WIDTH AT LESS THAN 480 PIXELS */
  2498. @media only screen and (max-width: 480px) {
  2499. .span_4_of_4 {
  2500. width: 100%;
  2501. }
  2502. .span_3_of_4 {
  2503. width: 100%;
  2504. }
  2505. .span_2_of_4 {
  2506. width: 100%;
  2507. }
  2508. .span_1_of_4 {
  2509. width: 100%;
  2510. }
  2511. }
  2512. .table > thead > tr > th.ph.sortable {
  2513. cursor: pointer;
  2514. text-decoration: underline;
  2515. color: #08C;
  2516. }
  2517. .float-reminder {
  2518. background: #fff;
  2519. border-top: 1px #ddd solid;
  2520. position: fixed;
  2521. bottom: 0;
  2522. width: 100%;
  2523. transition: opacity 0.3s ease-in-out;
  2524. opacity: 0;
  2525. height: 0;
  2526. overflow: hidden;
  2527. }
  2528. .float-reminder>.wrapper{
  2529. margin-bottom: 0;
  2530. }
  2531. .span_1_of_3 > .btn {
  2532. width: 100% !important;
  2533. margin-bottom: 10px;
  2534. }