Просмотр файла delta_framework-main/admin/styles/css/fullcalendar.css

Размер файла: 11.17Kb
  1. /*!
  2. * FullCalendar v2.0.2 Stylesheet
  3. * Docs & License: http://arshaw.com/fullcalendar/
  4. * (c) 2013 Adam Shaw
  5. */
  6.  
  7.  
  8. .fc {
  9. direction: ltr;
  10. text-align: left;
  11. margin-bottom: 20px;
  12. }
  13. .fc table {
  14. border-collapse: collapse;
  15. border-spacing: 0;
  16. }
  17. html .fc,
  18. .fc table {
  19. font-size: 1em;
  20. }
  21. .fc td,
  22. .fc th {
  23. padding: 0;
  24. vertical-align: top;
  25. }
  26.  
  27.  
  28.  
  29. /* Header
  30. ------------------------------------------------------------------------*/
  31.  
  32. .fc-header td {
  33. white-space: nowrap;
  34. }
  35.  
  36. .fc-header-left {
  37. width: 25%;
  38. text-align: left;
  39. }
  40. .fc-header-center {
  41. text-align: center;
  42. }
  43. .fc-header-right {
  44. width: 25%;
  45. text-align: right;
  46. }
  47. .fc-header-title {
  48. display: inline-block;
  49. vertical-align: top;
  50. }
  51. .fc-header-title h2 {
  52. margin-top: 0;
  53. white-space: nowrap;
  54. }
  55. .fc .fc-header-space {
  56. padding-left: 10px;
  57. }
  58. .fc-header .fc-button {
  59. margin-bottom: 1em;
  60. vertical-align: top;
  61. }
  62. /* buttons edges butting together */
  63.  
  64. .fc-header .fc-button {
  65. margin-right: -1px;
  66. }
  67. .fc-header .fc-corner-right, /* non-theme */
  68. .fc-header .ui-corner-right { /* theme */
  69. margin-right: 0; /* back to normal */
  70. }
  71. /* button layering (for border precedence) */
  72. .fc-header .fc-state-hover,
  73. .fc-header .ui-state-hover {
  74. z-index: 2;
  75. }
  76. .fc-header .fc-state-down {
  77. z-index: 3;
  78. }
  79.  
  80. .fc-header .fc-state-active,
  81. .fc-header .ui-state-active {
  82. z-index: 4;
  83. }
  84. /* Content
  85. ------------------------------------------------------------------------*/
  86. .fc-content {
  87. position: relative;
  88. z-index: 1; /* scopes all other z-index's to be inside this container */
  89. clear: both;
  90. zoom: 1; /* for IE7, gives accurate coordinates for [un]freezeContentHeight */
  91. }
  92. .fc-view {
  93. position: relative;
  94. width: 100%;
  95. overflow: hidden;
  96. }
  97.  
  98. /* Cell Styles
  99. ------------------------------------------------------------------------*/
  100.  
  101. .fc-widget-header, /* <th>, usually */
  102. .fc-widget-content { /* <td>, usually */
  103. border: 1px solid #ddd;
  104. }
  105. .fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
  106. background: #fcf8e3;
  107. }
  108. .fc-cell-overlay { /* semi-transparent rectangle while dragging */
  109. background: #bce8f1;
  110. opacity: .3;
  111. filter: alpha(opacity=30); /* for IE */
  112. }
  113.  
  114.  
  115. /* Buttons
  116. ------------------------------------------------------------------------*/
  117.  
  118. .fc-button {
  119. position: relative;
  120. display: inline-block;
  121. padding: 0 .6em;
  122. overflow: hidden;
  123. height: 1.9em;
  124. line-height: 1.9em;
  125. white-space: nowrap;
  126. cursor: pointer;
  127. }
  128. .fc-state-default { /* non-theme */
  129. border: 1px solid;
  130. }
  131.  
  132. .fc-state-default.fc-corner-left { /* non-theme */
  133. border-top-left-radius: 4px;
  134. border-bottom-left-radius: 4px;
  135. }
  136.  
  137. .fc-state-default.fc-corner-right { /* non-theme */
  138. border-top-right-radius: 4px;
  139. border-bottom-right-radius: 4px;
  140. }
  141.  
  142. /*
  143. Our default prev/next buttons use HTML entities like &lsaquo; &rsaquo; &laquo; &raquo;
  144. and we'll try to make them look good cross-browser.
  145. */
  146.  
  147. .fc-button .fc-icon {
  148. margin: 0 .1em;
  149. font-size: 2em;
  150. font-family: "Courier New", Courier, monospace;
  151. vertical-align: baseline; /* for IE7 */
  152. }
  153.  
  154. .fc-icon-left-single-arrow:after {
  155. content: "\02039";
  156. font-weight: bold;
  157. }
  158.  
  159. .fc-icon-right-single-arrow:after {
  160. content: "\0203A";
  161. font-weight: bold;
  162. }
  163.  
  164. .fc-icon-left-double-arrow:after {
  165. content: "\000AB";
  166. }
  167.  
  168. .fc-icon-right-double-arrow:after {
  169. content: "\000BB";
  170. }
  171. /* icon (for jquery ui) */
  172.  
  173. .fc-button .ui-icon {
  174. position: relative;
  175. top: 50%;
  176. float: left;
  177. margin-top: -8px; /* we know jqui icons are always 16px tall */
  178. }
  179. /*
  180. button states
  181. borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
  182. */
  183.  
  184. .fc-state-default {
  185. background-color: #f5f5f5;
  186. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  187. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  188. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  189. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  190. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  191. background-repeat: repeat-x;
  192. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  193. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  194. color: #333;
  195. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  196. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  197. }
  198.  
  199. .fc-state-hover,
  200. .fc-state-down,
  201. .fc-state-active,
  202. .fc-state-disabled {
  203. color: #333333;
  204. background-color: #e6e6e6;
  205. }
  206.  
  207. .fc-state-hover {
  208. color: #333333;
  209. text-decoration: none;
  210. background-position: 0 -15px;
  211. -webkit-transition: background-position 0.1s linear;
  212. -moz-transition: background-position 0.1s linear;
  213. -o-transition: background-position 0.1s linear;
  214. transition: background-position 0.1s linear;
  215. }
  216.  
  217. .fc-state-down,
  218. .fc-state-active {
  219. background-color: #cccccc;
  220. background-image: none;
  221. outline: 0;
  222. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  223. }
  224.  
  225. .fc-state-disabled {
  226. cursor: default;
  227. background-image: none;
  228. opacity: 0.65;
  229. filter: alpha(opacity=65);
  230. box-shadow: none;
  231. }
  232.  
  233.  
  234. /* Global Event Styles
  235. ------------------------------------------------------------------------*/
  236.  
  237. .fc-event-container > * {
  238. z-index: 8;
  239. }
  240.  
  241. .fc-event-container > .ui-draggable-dragging,
  242. .fc-event-container > .ui-resizable-resizing {
  243. z-index: 9;
  244. }
  245. .fc-event {
  246. border: 1px solid #3a87ad; /* default BORDER color */
  247. background-color: #3a87ad; /* default BACKGROUND color */
  248. color: #fff; /* default TEXT color */
  249. font-size: .85em;
  250. cursor: default;
  251. }
  252.  
  253. a.fc-event {
  254. text-decoration: none;
  255. }
  256. a.fc-event,
  257. .fc-event-draggable {
  258. cursor: pointer;
  259. }
  260. .fc-rtl .fc-event {
  261. text-align: right;
  262. }
  263.  
  264. .fc-event-inner {
  265. width: 100%;
  266. height: 100%;
  267. overflow: hidden;
  268. }
  269. .fc-event-time,
  270. .fc-event-title {
  271. padding: 0 1px;
  272. }
  273. .fc .ui-resizable-handle {
  274. display: block;
  275. position: absolute;
  276. z-index: 99999;
  277. overflow: hidden; /* hacky spaces (IE6/7) */
  278. font-size: 300%; /* */
  279. line-height: 50%; /* */
  280. }
  281. /* Horizontal Events
  282. ------------------------------------------------------------------------*/
  283.  
  284. .fc-event-hori {
  285. border-width: 1px 0;
  286. margin-bottom: 1px;
  287. }
  288.  
  289. .fc-ltr .fc-event-hori.fc-event-start,
  290. .fc-rtl .fc-event-hori.fc-event-end {
  291. border-left-width: 1px;
  292. border-top-left-radius: 3px;
  293. border-bottom-left-radius: 3px;
  294. }
  295.  
  296. .fc-ltr .fc-event-hori.fc-event-end,
  297. .fc-rtl .fc-event-hori.fc-event-start {
  298. border-right-width: 1px;
  299. border-top-right-radius: 3px;
  300. border-bottom-right-radius: 3px;
  301. }
  302. /* resizable */
  303. .fc-event-hori .ui-resizable-e {
  304. top: 0 !important; /* importants override pre jquery ui 1.7 styles */
  305. right: -3px !important;
  306. width: 7px !important;
  307. height: 100% !important;
  308. cursor: e-resize;
  309. }
  310. .fc-event-hori .ui-resizable-w {
  311. top: 0 !important;
  312. left: -3px !important;
  313. width: 7px !important;
  314. height: 100% !important;
  315. cursor: w-resize;
  316. }
  317. .fc-event-hori .ui-resizable-handle {
  318. _padding-bottom: 14px; /* IE6 had 0 height */
  319. }
  320. /* Reusable Separate-border Table
  321. ------------------------------------------------------------*/
  322.  
  323. table.fc-border-separate {
  324. border-collapse: separate;
  325. }
  326. .fc-border-separate th,
  327. .fc-border-separate td {
  328. border-width: 1px 0 0 1px;
  329. }
  330. .fc-border-separate th.fc-last,
  331. .fc-border-separate td.fc-last {
  332. border-right-width: 1px;
  333. }
  334. .fc-border-separate tr.fc-last th,
  335. .fc-border-separate tr.fc-last td {
  336. border-bottom-width: 1px;
  337. }
  338. .fc-border-separate tbody tr.fc-first td,
  339. .fc-border-separate tbody tr.fc-first th {
  340. border-top-width: 0;
  341. }
  342.  
  343. /* Month View, Basic Week View, Basic Day View
  344. ------------------------------------------------------------------------*/
  345.  
  346. .fc-grid th {
  347. text-align: center;
  348. }
  349.  
  350. .fc .fc-week-number {
  351. width: 22px;
  352. text-align: center;
  353. }
  354.  
  355. .fc .fc-week-number div {
  356. padding: 0 2px;
  357. }
  358. .fc-grid .fc-day-number {
  359. float: right;
  360. padding: 0 2px;
  361. }
  362. .fc-grid .fc-other-month .fc-day-number {
  363. opacity: 0.3;
  364. filter: alpha(opacity=30); /* for IE */
  365. /* opacity with small font can sometimes look too faded
  366. might want to set the 'color' property instead
  367. making day-numbers bold also fixes the problem */
  368. }
  369. .fc-grid .fc-day-content {
  370. clear: both;
  371. padding: 2px 2px 1px; /* distance between events and day edges */
  372. }
  373. /* event styles */
  374. .fc-grid .fc-event-time {
  375. font-weight: bold;
  376. }
  377. /* right-to-left */
  378. .fc-rtl .fc-grid .fc-day-number {
  379. float: left;
  380. }
  381. .fc-rtl .fc-grid .fc-event-time {
  382. float: right;
  383. }
  384.  
  385. /* Agenda Week View, Agenda Day View
  386. ------------------------------------------------------------------------*/
  387.  
  388. .fc-agenda table {
  389. border-collapse: separate;
  390. }
  391. .fc-agenda-days th {
  392. text-align: center;
  393. }
  394. .fc-agenda .fc-agenda-axis {
  395. width: 50px;
  396. padding: 0 4px;
  397. vertical-align: middle;
  398. text-align: right;
  399. font-weight: normal;
  400. }
  401.  
  402. .fc-agenda-slots .fc-agenda-axis {
  403. white-space: nowrap;
  404. }
  405.  
  406. .fc-agenda .fc-week-number {
  407. font-weight: bold;
  408. }
  409. .fc-agenda .fc-day-content {
  410. padding: 2px 2px 1px;
  411. }
  412. /* make axis border take precedence */
  413. .fc-agenda-days .fc-agenda-axis {
  414. border-right-width: 1px;
  415. }
  416. .fc-agenda-days .fc-col0 {
  417. border-left-width: 0;
  418. }
  419. /* all-day area */
  420. .fc-agenda-allday th {
  421. border-width: 0 1px;
  422. }
  423. .fc-agenda-allday .fc-day-content {
  424. min-height: 34px; /* TODO: doesnt work well in quirksmode */
  425. _height: 34px;
  426. }
  427. /* divider (between all-day and slots) */
  428. .fc-agenda-divider-inner {
  429. height: 2px;
  430. overflow: hidden;
  431. }
  432. .fc-widget-header .fc-agenda-divider-inner {
  433. background: #eee;
  434. }
  435. /* slot rows */
  436. .fc-agenda-slots th {
  437. border-width: 1px 1px 0;
  438. }
  439. .fc-agenda-slots td {
  440. border-width: 1px 0 0;
  441. background: none;
  442. }
  443. .fc-agenda-slots td div {
  444. height: 20px;
  445. }
  446. .fc-agenda-slots tr.fc-slot0 th,
  447. .fc-agenda-slots tr.fc-slot0 td {
  448. border-top-width: 0;
  449. }
  450.  
  451. .fc-agenda-slots tr.fc-minor th,
  452. .fc-agenda-slots tr.fc-minor td {
  453. border-top-style: dotted;
  454. }
  455. .fc-agenda-slots tr.fc-minor th.ui-widget-header {
  456. *border-top-style: solid; /* doesn't work with background in IE6/7 */
  457. }
  458.  
  459.  
  460. /* Vertical Events
  461. ------------------------------------------------------------------------*/
  462.  
  463. .fc-event-vert {
  464. border-width: 0 1px;
  465. }
  466.  
  467. .fc-event-vert.fc-event-start {
  468. border-top-width: 1px;
  469. border-top-left-radius: 3px;
  470. border-top-right-radius: 3px;
  471. }
  472.  
  473. .fc-event-vert.fc-event-end {
  474. border-bottom-width: 1px;
  475. border-bottom-left-radius: 3px;
  476. border-bottom-right-radius: 3px;
  477. }
  478. .fc-event-vert .fc-event-time {
  479. white-space: nowrap;
  480. font-size: 10px;
  481. }
  482.  
  483. .fc-event-vert .fc-event-inner {
  484. position: relative;
  485. z-index: 2;
  486. }
  487. .fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay */
  488. position: absolute;
  489. z-index: 1;
  490. top: 0;
  491. left: 0;
  492. width: 100%;
  493. height: 100%;
  494. background: #fff;
  495. opacity: .25;
  496. filter: alpha(opacity=25);
  497. }
  498. .fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */
  499. .fc-select-helper .fc-event-bg {
  500. display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
  501. }
  502. /* resizable */
  503. .fc-event-vert .ui-resizable-s {
  504. bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */
  505. width: 100% !important;
  506. height: 8px !important;
  507. overflow: hidden !important;
  508. line-height: 8px !important;
  509. font-size: 11px !important;
  510. font-family: monospace;
  511. text-align: center;
  512. cursor: s-resize;
  513. }
  514. .fc-agenda .ui-resizable-resizing { /* TODO: better selector */
  515. _overflow: hidden;
  516. }