principal.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871
  1. * {
  2. outline: none;
  3. }
  4. html, body {
  5. height: 100%;
  6. margin: 0;
  7. padding: 0;
  8. overflow-y: hidden;
  9. }
  10. body {
  11. background: #FFFFFF;
  12. font-family: Arial, Helvetica, sans-serif;
  13. font-size: 11px;
  14. }
  15. b, strong {
  16. font-weight: 600;
  17. }
  18. span {
  19. border: 0;
  20. }
  21. #wrapper {
  22. top: -168px;
  23. margin-top: 168px;
  24. height: 100%;
  25. width: 100%;
  26. padding: 0px;
  27. position:relative;
  28. overflow: auto;
  29. box-sizing: border-box;
  30. position: absolute;
  31. }
  32. #wrapper_container {
  33. margin-left: auto;
  34. margin-right: auto;
  35. min-width: 320px;
  36. width: auto;
  37. max-width: 1156px;
  38. height: 100%;
  39. padding: 0px 15px 0px 15px;
  40. position: relative;
  41. }
  42. #wrapper_container table {
  43. cellspacing: 0px;
  44. cellpadding: 0px;
  45. }
  46. #wrapper_container_module {
  47. min-width: 320px;
  48. width: auto;
  49. max-width: 966px;
  50. height: 100%;
  51. padding: 0px 10px 0px 10px;
  52. position: relative;
  53. }
  54. #wrapper_table {
  55. width: 100%;
  56. height: auto;
  57. padding: 10px 0px 17px 0px;
  58. display: block;
  59. }
  60. #wrapper_table_head {
  61. margin-right: -5px;
  62. background: #FF0000;
  63. border-top-left-radius: 5px;
  64. border-top-right-radius: 5px;
  65. width: 100%;
  66. height: 34px;
  67. padding: 5px 10px 9px 10px;
  68. color: #FFFFFF;
  69. font-family: Poppins, ​Helvetica, ​sans-serif;
  70. font-size: 16px;
  71. font-weight: 300;
  72. text-align: left;
  73. display: block;
  74. clear: both;
  75. box-sizing: border-box;
  76. }
  77. #wrapper_table_body {
  78. margin-right: -5px;
  79. background: #FFFFFF;
  80. border: 1px solid #FF0000;
  81. border-bottom-left-radius: 5px;
  82. border-bottom-right-radius: 5px;
  83. width: 100%;
  84. height: auto;
  85. padding: 10px 10px 10px 9px;
  86. color: #000;
  87. font-family: Poppins, ​Helvetica, ​sans-serif;
  88. font-size: 16px;
  89. font-weight: 300;
  90. text-align: left;
  91. display: block;
  92. clear: both;
  93. box-sizing: border-box;
  94. box-shadow: 5px 5px 5px #888888;
  95. }
  96. #wrapper_table_body span {
  97. background-size: 100% 100%;
  98. width: 200px;
  99. height: 109px;
  100. margin: 10px 0px 0px 20px;
  101. display: inline-block;
  102. cursor: pointer;
  103. position: relative;
  104. transition: 0.4s;
  105. }
  106. #wrapper_table_body span:hover {
  107. -moz-filter: grayscale(100%);
  108. -webkit-filter: grayscale(100%);
  109. filter: grayscale(100%);
  110. }
  111. #wrapper_table_body_mod {
  112. margin-right: -5px;
  113. background: #FFFFFF;
  114. border: 1px solid #FF0000;
  115. border-bottom-left-radius: 5px;
  116. border-bottom-right-radius: 5px;
  117. width: 100%;
  118. height: auto;
  119. padding: 10px 10px 10px 9px;
  120. color: #000;
  121. font-family: 'Open Sans', sans-serif;
  122. font-size: 16px;
  123. font-weight: 300;
  124. text-align: left;
  125. display: block;
  126. clear: both;
  127. box-sizing: border-box;
  128. box-shadow: 5px 5px 5px #888888;
  129. }
  130. .wrapper_table_body_mod_row {
  131. width: 100%;
  132. height: 25px;
  133. font-size: 14px;
  134. text-align: center;
  135. line-height: 14px;
  136. display: inline-block;
  137. position: relative;
  138. }
  139. #wrapper_table_body_mod_app {
  140. margin-right: -5px;
  141. background: #FFFFFF;
  142. border: 1px solid #FF0000;
  143. border-bottom-left-radius: 5px;
  144. border-bottom-right-radius: 5px;
  145. width: 100%;
  146. height: 100%;
  147. padding: 10px 10px 10px 9px;
  148. color: #000;
  149. font-family: 'Open Sans', sans-serif;
  150. font-size: 12px;
  151. line-height: 12px;
  152. font-weight: 300;
  153. text-align: left;
  154. display: block;
  155. clear: both;
  156. box-sizing: border-box;
  157. box-shadow: 5px 5px 5px #888888;
  158. position: relative;
  159. }
  160. #wrapper_table_body_QUI {
  161. margin-right: -5px;
  162. background: #FFFFFF;
  163. border: 1px solid #FF0000;
  164. border-bottom-left-radius: 5px;
  165. border-bottom-right-radius: 5px;
  166. width: 100%;
  167. height: 50px;
  168. padding: 85px 200px 85px 200px;
  169. color: #000;
  170. font-family: Poppins, ​Helvetica, ​sans-serif;
  171. font-size: 16px;
  172. font-weight: 40;
  173. text-align: left;
  174. display: block;
  175. clear: both;
  176. box-sizing: border-box;
  177. box-shadow: 5px 5px 5px #888888;
  178. }
  179. #wrapper_table_body span {
  180. background-size: 100% 100%;
  181. width: 200px;
  182. height: 109px;
  183. margin: 10px 0px 0px 20px;
  184. display: inline-block;
  185. cursor: pointer;
  186. position: relative;
  187. }
  188. #wrapper_table_body_mod_QUI {
  189. margin-right: -5px;
  190. background: #FFFFFF;
  191. border: 1px solid #FF0000;
  192. border-bottom-left-radius: 5px;
  193. border-bottom-right-radius: 5px;
  194. width: 100%;
  195. height: auto;
  196. padding: 10px 10px 10px 9px;
  197. color: #000;
  198. font-family: Poppins, ​Helvetica, ​sans-serif;
  199. font-size: 16px;
  200. font-weight: 300;
  201. text-align: left;
  202. display: block;
  203. clear: both;
  204. box-sizing: border-box;
  205. box-shadow: 5px 5px 5px #888888;
  206. }
  207. .wrapper_table_body_mod_row_QUI {
  208. width: 100%;
  209. height: 25px;
  210. font-size: 14px;
  211. text-align: center;
  212. line-height: 14px;
  213. display: inline-block;
  214. position: relative;
  215. }
  216. #wrapper_table_body_mod_app_QUI {
  217. margin-right: -5px;
  218. background: #FFFFFF;
  219. border: 1px solid #FF0000;
  220. border-bottom-left-radius: 5px;
  221. border-bottom-right-radius: 5px;
  222. width: 100%;
  223. height: 100%;
  224. padding: 10px 10px 10px 9px;
  225. color: #000;
  226. font-family: Poppins, ​Helvetica, ​sans-serif;
  227. font-size: 13px;
  228. line-height: 13px;
  229. font-weight: 300;
  230. text-align: left;
  231. display: block;
  232. clear: both;
  233. box-sizing: border-box;
  234. box-shadow: 5px 5px 5px #888888;
  235. position: relative;
  236. }
  237. .etiquetaFormulario {
  238. text-align: right;
  239. }
  240. label {
  241. padding-top: 9px;
  242. font-weight: 700;
  243. display: inline-block;
  244. position: relative;
  245. }
  246. .noTopPadding {
  247. padding-top: 0px;
  248. }
  249. .noBorder {
  250. border:none;
  251. }
  252. #menu_encabezado {
  253. width: 100%;
  254. height: 102px;
  255. clear: both;
  256. display: flex;
  257. justify-content: center;
  258. align-items: center;
  259. }
  260. #menu_encabezado span {
  261. background-size: 150px 82px;
  262. width: 150px;
  263. height: 82px;
  264. margin: 10px 0px 0px 0px;
  265. display: inline-block;
  266. position: relative;
  267. }
  268. #menu_perfil {
  269. margin-left: 5px;
  270. width: 175px;
  271. height: auto;
  272. font-family: Poppins, ​Helvetica, ​sans-serif;
  273. font-size: 11px;
  274. font-weight: 200;
  275. display: block;
  276. clear: both;
  277. box-sizing: border-box;
  278. }
  279. #menu_perfil_normal {
  280. width: 175px;
  281. height: auto;
  282. font-family: Poppins, ​Helvetica, ​sans-serif;
  283. font-size: 11px;
  284. font-weight: 200;
  285. display: block;
  286. clear: both;
  287. box-sizing: border-box;
  288. }
  289. /* Ajuste de scroll*/
  290. #bodyScroller{
  291. overflow-x: hidden;
  292. overflow-y: auto;
  293. }
  294. /* Scroll para Chrome */
  295. #bodyScroller::-webkit-scrollbar{width:6px;height:6px;}
  296. #bodyScroller::-webkit-scrollbar-track{background-color: rgba(0, 0, 0, 0.1);}
  297. #bodyScroller::-webkit-scrollbar-track:hover{background-color: rgba(0, 0, 0, 0.1);}
  298. #bodyScroller::-webkit-scrollbar-thumb{background-color: rgba(0, 0, 0, 0.2);}
  299. #bodyScroller::-webkit-scrollbar-thumb:hover{background-color: rgba(0, 0, 0, 0.5);}
  300. /* Scroll para Firefox */
  301. #bodyScroller{scrollbar-width: thin;}
  302. .opciones { margin-top: 10px; }
  303. .menu_perfil_linea {
  304. margin-left: -5px;
  305. border-top-left-radius: 5px;
  306. border-top-right-radius: 5px;
  307. border-bottom-left-radius: 5px;
  308. border-bottom-right-radius: 5px;
  309. /*width: 100%;*/
  310. height: auto;
  311. text-align: left;
  312. display: block;
  313. clear: both;
  314. box-sizing: border-box;
  315. }
  316. .menu_perfil_linea_segundo {
  317. margin-left: -5px;
  318. border-top-left-radius: 5px;
  319. border-top-right-radius: 5px;
  320. border-bottom-left-radius: 5px;
  321. border-bottom-right-radius: 5px;
  322. width: 95%;
  323. height: auto;
  324. text-align: left;
  325. display: block;
  326. clear: both;
  327. box-sizing: border-box;
  328. }
  329. .sombra {
  330. box-shadow: 3px 3px 3px #888888;
  331. }
  332. .menuPerfil {
  333. background: #FFFFFF;
  334. border: 1px solid #000000;
  335. margin-top: -1px;
  336. padding: 5px 1px 5px 3px;
  337. color: #000000;
  338. }
  339. .menuPrimero {
  340. margin-top: 5px;
  341. background: #333333;
  342. border: 1px solid #333333;
  343. padding: 5px 1px 5px 3px;
  344. color: #FFFFFF;
  345. font-size: 13px;
  346. font-weight: 200;
  347. cursor: pointer;
  348. }
  349. .menuSegundo {
  350. margin-top: 1px;
  351. background: #646464;
  352. border: 0px solid #FFFFFF;
  353. padding: 3px 1px 3px 10px;
  354. color: #FFFFFF;
  355. cursor: pointer;
  356. }
  357. .menuSegundoSegundo {
  358. margin-top: 1px;
  359. margin-left: 3px;
  360. background: #646464;
  361. border: 0px solid #FFFFFF;
  362. padding: 3px 1px 3px 10px;
  363. color: #FFFFFF;
  364. cursor: pointer;
  365. }
  366. .menuSegundo2 {
  367. margin-top: 2px;
  368. margin-left: 3px;
  369. background: #646464;
  370. border: 0px solid #FFFFFF;
  371. padding: 3px 1px 3px 10px;
  372. color: #FFFFFF;
  373. cursor: pointer;
  374. margin-left: 1px;
  375. }
  376. .menuCompacto {
  377. padding-left: 20px;
  378. background: url(layout/site/menu_fRight.png) no-repeat #333333;
  379. }
  380. .menuExtendido {
  381. padding-left: 20px;
  382. background: url(layout/site/menu_fDown.png) no-repeat #333333;
  383. }
  384. .menuCompactoSegundo {
  385. margin-left: 3px;
  386. padding-left: 20px;
  387. background: url(layout/site/menu_fRight.png) no-repeat #333333;
  388. }
  389. .menuExtendidoSegundo {
  390. margin-left: 3px;
  391. padding-left: 20px;
  392. background: url(layout/site/menu_fDown.png) no-repeat #333333;
  393. }
  394. #ACL { background: url(layout/site/portales/ACL.jpg) no-repeat; }
  395. #ACW { background: url(layout/site/portales/ACW.jpg) no-repeat; }
  396. #ADD { background: url(layout/site/portales/ADD.jpg) no-repeat; }
  397. #ADM { background: url(layout/site/portales/ADM.jpg) no-repeat; }
  398. #ALP { background: url(layout/site/portales/ALP.jpg) no-repeat; }
  399. #APR { background: url(layout/site/portales/APR.jpg) no-repeat; }
  400. #ASW { background: url(layout/site/portales/ASW.jpg) no-repeat; }
  401. #CLI { background: url(layout/site/portales/CLI.jpg) no-repeat; }
  402. #CRO { background: url(layout/site/portales/CRO.jpg) no-repeat; }
  403. #CSP { background: url(layout/site/portales/CSP.jpg) no-repeat; }
  404. #ENO { background: url(layout/site/portales/ENO.jpg) no-repeat; }
  405. #FAC { background: url(layout/site/portales/FAC.jpg) no-repeat; }
  406. #GAS { background: url(layout/site/portales/GAS.jpg) no-repeat; }
  407. #NOM { background: url(layout/site/portales/NOM.jpg) no-repeat; }
  408. #PCE { background: url(layout/site/portales/PCE.jpg) no-repeat; }
  409. #PRO { background: url(layout/site/portales/PRO.jpg) no-repeat; }
  410. #QUI { background: url(layout/site/portales/QUI.jpg) no-repeat; }
  411. #RAM { background: url(layout/site/portales/RAM.jpg) no-repeat; }
  412. #RAN { background: url(layout/site/portales/RAN.jpg) no-repeat; }
  413. #SCR { background: url(layout/site/portales/SCR.jpg) no-repeat; }
  414. #SMA { background: url(layout/site/portales/SMA.jpg) no-repeat; }
  415. #HYC { background: url(layout/site/portales/HYC.jpg) no-repeat; }
  416. #UEP { background: url(layout/site/portales/UEP.jpg) no-repeat; }
  417. #MCA { background: url(layout/site/portales/MCA.jpg) no-repeat; }
  418. #wrapper_table_body_QUI { background: url(layout/site/portales/QUI1.jpg) no-repeat; }
  419. #QUIText {
  420. text-align: justify;
  421. color: black;
  422. font-family: verdana;
  423. font-size: 20px;
  424. }
  425. #QUIText1 {
  426. color: black;
  427. text-align: right;
  428. font-family: verdana;
  429. font-size: 20px;
  430. }
  431. /* Carga de Páginas */
  432. .pageOverlay {
  433. top: 0;
  434. left: 0;
  435. position: absolute;
  436. height: 100%;
  437. width: 100%;
  438. z-index: 1001;
  439. display: block;
  440. }
  441. #loadingOverlay {
  442. background: #FFF url('//ajax.googleapis.com/ajax/libs/dojo/1.10.4/dijit/themes/claro/images/loadingAnimation.gif') no-repeat 10px 23px;
  443. }
  444. .loadingMessage {
  445. padding: 25px 40px;
  446. color: #999;
  447. }
  448. /* Tablas */
  449. .encabezadoTabla {
  450. background-color: #D6D4D4;
  451. height: 19px;
  452. text-align: left;
  453. font-weight: 900;
  454. }
  455. .cuerpoTabla {
  456. font-size: 11px;
  457. }
  458. .celdaTabla {
  459. border-bottom: 1px #D6D4D4 solid;
  460. }
  461. .mensajeTabla {
  462. font-size: 16px;
  463. font-weight: 400;
  464. }
  465. .dijitIttecActFEmision {
  466. background-image: url("layout/site/lsActFEmision.png");
  467. background-repeat: no-repeat;
  468. width: 16px;
  469. height: 16px;
  470. }
  471. .dijitIttecActRfc {
  472. background-image: url("layout/site/lsActRfc.png");
  473. background-repeat: no-repeat;
  474. width: 16px;
  475. height: 16px;
  476. }
  477. .dijitIttecBuscar {
  478. background-image: url("layout/site/lsBuscar.png");
  479. background-repeat: no-repeat;
  480. width: 16px;
  481. height: 16px;
  482. }
  483. .dijitIttecImagen {
  484. background-image: url("layout/site/lsImagen.png");
  485. background-repeat: no-repeat;
  486. width: 16px;
  487. height: 16px;
  488. }
  489. .dijitIttecJde {
  490. background-image: url("layout/site/lsJde.png");
  491. background-repeat: no-repeat;
  492. width: 16px;
  493. height: 16px;
  494. }
  495. .dijitIttecLog {
  496. background-image: url("layout/site/lsLog.png");
  497. background-repeat: no-repeat;
  498. width: 16px;
  499. height: 16px;
  500. }
  501. .dijitIttecOrdenar {
  502. background-image: url("layout/site/lsOrdenar.png");
  503. background-repeat: no-repeat;
  504. width: 16px;
  505. height: 16px;
  506. }
  507. .dijitIttecPdf {
  508. background-image: url("layout/site/lsPdf.gif");
  509. background-position: 1px;
  510. background-repeat: no-repeat;
  511. width: 14px;
  512. height: 14px;
  513. }
  514. .dijitIttecPrevisualizar {
  515. background-image: url("layout/site/lsPrevisualizar.png");
  516. background-repeat: no-repeat;
  517. width: 16px;
  518. height: 16px;
  519. }
  520. .dijitIttecReprocesar {
  521. background-image: url("layout/site/lsReprocesar.png");
  522. background-repeat: no-repeat;
  523. width: 16px;
  524. height: 16px;
  525. }
  526. .dijitIttecVerEditar {
  527. background-image: url("layout/site/lsVerEditar.png");
  528. background-repeat: no-repeat;
  529. width: 16px;
  530. height: 16px;
  531. }
  532. .dijitIttecXls {
  533. background-image: url("layout/site/lsXls.png");
  534. background-repeat: no-repeat;
  535. width: 16px;
  536. height: 16px;
  537. }
  538. .dijitIttecXml {
  539. background-image: url("layout/site/lsXml.gif");
  540. background-position: 1px;
  541. background-repeat: no-repeat;
  542. width: 14px;
  543. height: 14px;
  544. }
  545. .dijitIttecAdj {
  546. background-image: url("layout/site/lsAdj.png");
  547. background-position: 1px;
  548. background-repeat: no-repeat;
  549. width: 16px;
  550. height: 16px;
  551. }
  552. .dijitIttecDet {
  553. background-image: url("layout/site/lsDet.png");
  554. background-position: 1px;
  555. background-repeat: no-repeat;
  556. width: 16px;
  557. height: 16px;
  558. }
  559. .dijitIttecEdit {
  560. background-image: url("layout/site/lsEdi.png");
  561. background-position: 1px;
  562. background-repeat: no-repeat;
  563. width: 16px;
  564. height: 16px;
  565. }
  566. .dijitIttecImpe {
  567. background-image: url("layout/site/lsImp.png");
  568. background-position: 1px;
  569. background-repeat: no-repeat;
  570. width: 16px;
  571. height: 16px;
  572. }
  573. .dijitIttecCheck {
  574. background-image: url("layout/site/icono4.gif");
  575. background-position: 1px;
  576. background-repeat: no-repeat;
  577. width: 16px;
  578. height: 16px;
  579. }
  580. .dijitIconImages {
  581. background-image: url('layout/site/Images.png');
  582. background-position: 1px;
  583. background-repeat: no-repeat;
  584. width: 16px;
  585. height: 16px;
  586. }
  587. .dijitIttecBanamex {
  588. background-image: url("layout/site/iconoBanamex.gif");
  589. background-repeat: no-repeat;
  590. width: 16px;
  591. height: 16px;
  592. }
  593. .dijitIttecBBVA {
  594. background-image: url("layout/site/iconoBBVA.gif");
  595. background-repeat: no-repeat;
  596. width: 16px;
  597. height: 16px;
  598. }
  599. .dijitIttecTrabOmitidos{
  600. background-image: url("layout/site/Dis_TBOmitidos.gif");
  601. background-repeat: no-repeat;
  602. width: 16px;
  603. height: 16px;
  604. }
  605. .dijitIttecHorasExtra {
  606. background-image: url("layout/site/Inc_HorasExtra.gif");
  607. background-repeat: no-repeat;
  608. width: 16px;
  609. height: 16px;
  610. }
  611. .dijitIttecHorasExtraNOI {
  612. background-image: url("layout/site/Inc_HorasExtraNOI.gif");
  613. background-repeat: no-repeat;
  614. width: 16px;
  615. height: 16px;
  616. }
  617. .dijitIttecIncapacidades {
  618. background-image: url("layout/site/Inc_Incapacidades.gif");
  619. background-repeat: no-repeat;
  620. width: 16px;
  621. height: 16px;
  622. }
  623. .dijitIttecFaltas {
  624. background-image: url("layout/site/Inc_Faltas.gif");
  625. background-repeat: no-repeat;
  626. width: 16px;
  627. height: 16px;
  628. }
  629. .dijitIttecVacaciones {
  630. background-image: url("layout/site/Inc_Vacaciones.gif");
  631. background-repeat: no-repeat;
  632. width: 16px;
  633. height: 16px;
  634. }
  635. .dijitIttecPrimaV {
  636. background-image: url("layout/site/Inc_PrimaV.gif");
  637. background-repeat: no-repeat;
  638. width: 16px;
  639. height: 16px;
  640. }
  641. .dijitIttecComedor {
  642. background-image: url("layout/site/Inc_Comedor.gif");
  643. background-repeat: no-repeat;
  644. width: 16px;
  645. height: 16px;
  646. }
  647. .dijitIttecComedorNOI{
  648. background-image: url("layout/site/Inc_ComedorNOI.gif");
  649. background-repeat: no-repeat;
  650. width: 16px;
  651. height: 16px;
  652. }
  653. .dijitIttecOrganizarConceptos {
  654. background-image: url("layout/site/lsOrganizarC.gif");
  655. background-repeat: no-repeat;
  656. width: 14px;
  657. height: 14px;
  658. }
  659. .dijitIttecSi {
  660. background-image: url("layout/site/lsSi.gif");
  661. background-position: 1px;
  662. background-repeat: no-repeat;
  663. width: 14px;
  664. height: 10px;
  665. }
  666. .dijitIttecNo {
  667. background-image: url("layout/site/lsNo.gif");
  668. background-position: 1px;
  669. background-repeat: no-repeat;
  670. width: 14px;
  671. height: 13px;
  672. }
  673. .dijitIttecCfdiRelacionados {
  674. background-image: url("layout/site/lsCFDIrel.gif");
  675. background-position: 1px;
  676. background-repeat: no-repeat;
  677. width: 14px;
  678. height: 14px;
  679. }
  680. .dijitIttecTextoSlider {
  681. background-image: url("layout/site/lsTextoSlider.png");
  682. background-repeat: no-repeat;
  683. width: 16px;
  684. height: 16px;
  685. }
  686. /* start messages */
  687. .system_messages {
  688. margin: 0;
  689. padding: 5px 0 0;
  690. }
  691. .system_messages li {
  692. list-style:none;
  693. margin: 0 0 7px;
  694. padding: 6px 0 6px 38px;
  695. font-size: 11px;
  696. position: relative;
  697. top: 0;
  698. left: 0;
  699. min-height: 1px;
  700. list-style-position: outside;
  701. }
  702. .white {
  703. background: #fefefe url(layout/site/forms/white_message.gif) repeat-x;
  704. border: 1px solid #dbdbdb;
  705. }
  706. .system_title {
  707. font-size: 11px;
  708. }
  709. .ico {
  710. display: block;
  711. width: 23px;
  712. height: 23px;
  713. background-repeat: no-repeat;
  714. overflow: hidden;
  715. position: absolute;
  716. left: 4px;
  717. top: 1px;
  718. }
  719. .white .system_title {
  720. color: #4f4f4f;
  721. }
  722. .white .ico {
  723. background-image:url(layout/site/forms/yellow_ico.png); /*white_ico.png*/
  724. }
  725. .red {
  726. background: #e2c5c5 url(layout/site/forms/red_message.gif) repeat-x;
  727. border: 1px solid #cf9e9e;
  728. }
  729. .red .system_title {
  730. color: #ae2727;
  731. }
  732. .red .ico {
  733. background-image:url(layout/site/forms/red_ico.png);
  734. }
  735. .blue {
  736. background: #c4dde3 url(layout/site/forms/blue_message.gif) repeat-x;
  737. border: 1px solid #9cc6d0;
  738. }
  739. .blue .system_title {
  740. color: #0f4b74;
  741. }
  742. .blue .ico {
  743. background-image:url(layout/site/forms/blue_ico.png);
  744. }
  745. .green {
  746. background: #c7e5c2 url(layout/site/forms/green_message.gif) repeat-x;
  747. border: 1px solid #a2d399;
  748. }
  749. .green .system_title {
  750. color: #386d19;
  751. }
  752. .green .ico {
  753. background-image:url(layout/site/forms/green_ico.png);
  754. }
  755. .yellow {
  756. background: #eae1b1 url(layout/site/forms/yellow_message.gif) repeat-x;
  757. border: 1px solid #e0d182;
  758. }
  759. .yellow .system_title {
  760. color: #675918;
  761. }
  762. .yellow .ico {
  763. background-image:url(layout/site/forms/yellow_ico.png);
  764. }
  765. /* end messages */
  766. /* */
  767. @media only screen and (min-width: 1200px) {
  768. #wrapper_container {
  769. margin-left: 0;
  770. margin-right: 0;
  771. max-width: 100%;
  772. }
  773. #wrapper_container_module {
  774. max-width: 100%;
  775. }
  776. }