123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- /**
- * Some of the examples make use of the Silk icon set by Mark James http://www.famfamfam.com/lab/icons/silk/
- *
- */
- .icon-prev,
- .icon-previous
- {
- background: url(../images/arrow_left.png) no-repeat left center !important;
- }
- .icon-next
- {
- background: url(../images/arrow_right.png) no-repeat left center !important;
- }
- .icon-calendar
- {
- background: url(../images/calendar.png) no-repeat left center !important;
- }
- body {
- font-family:helvetica,tahoma,verdana,sans-serif;
- padding:20px;
- padding-top:32px;
- font-size:13px;
- }
- p {
- margin-bottom:15px;
- }
- h1 {
- font-size:large;
- margin-bottom:20px;
- }
- h2 {
- font-size:14px;
- color:#333;
- font-weight:bold;
- margin:10px 0;
- }
- pre.code{
- background: #F8F8F8;
- border: 1px solid #e8e8e8;
- padding:10px;
- margin:10px;
- margin-left:0px;
- border-left:5px solid #e8e8e8;
- font-size: 12px !important;
- line-height:14px !important;
- }
- a
- {
- text-decoration:none;
- }
- a:hover
- {
- text-decoration:underline;
- }
- .sch-event-endsoutside
- {
- -moz-border-radius-topright:0 !important;
- -moz-border-radius-bottomright:0 !important;
- -webkit-border-radius-top-right:0 !important;
- -webkit-border-radius-bottom-right:0 !important;
- }
- .sch-event-startsoutside
- {
- -moz-border-radius-topleft:0 !important;
- -moz-border-radius-bottomleft:0 !important;
- -webkit-border-radius-top-left:0 !important;
- -webkit-border-radius-bottom-left:0 !important;
- }
- .sch-event
- {
- -webkit-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- -moz-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- -ms-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- border-radius:3px;
- border:1px solid Turquoise;
- }
- .sch-gantt-parent-cell
- {
- font-weight: bold !important;
- }
- .sch-ganttpanel .x-tree-icon-parent
- {
- background: url(../images/puzzle.png) no-repeat left center;
- }
- .x-tree-icon-parent{
- background: url(../images/puzzle.png) no-repeat left center;
- }
- .x-tree-icon-leaf
- {
- background: url(../images/cog.png) no-repeat left center;
- }
- .x-menu-add
- {
- background: url(../images/Add_16x16.png) no-repeat left center;
- }
- .x-menu-delete
- {
- background: url(../images/Delete_16x16.png) no-repeat left center;
- }
- .x-menu-edit{
- background: url(../images/edit.png) no-repeat left center;
- }
- .x-menu-scan{
- background: url(../images/scan.png) no-repeat left center;
- }
- .x-menu-delete-dependency{
- background:url(../images/delete.gif) no-repeat left center;
- }
- .x-menu-add-up{
- background:url(../images/up.png) no-repeat left center;
- }
- .x-menu-add-down{
- background:url(../images/down.png) no-repeat left center;
- }
- .x-menu-menu-add{
- background:url(../images/add.png) no-repeat left center;
- }
- .gnt-national-holiday {
- background-color : #ffabab;
- background-image : url(images/se.png);
- background-position : center center !important;
- background-repeat : no-repeat;
- }
- .gnt-company-holiday {
- background-color : #c4e3e7;
- background-image : url(images/bryntum.jpg);
- background-position : center center !important;
- background-repeat : no-repeat;
- }
- .gnt-date {
- background-image : url(../images/date.png) !important;
- }
- .x-advance-print{
- background-image : url(../images/printer.png) !important;
- }
- .x-advance-save{
- background-image : url(../images/Save-16x16.png) !important;
- }
- .x-advance-add{
- background-image : url(../images/add.png) !important;
- }
- .x-advance-find{
-
- background-image : url(../images/Preview_16x16.png) !important;
- }
- .x-advance-delete{
- background-image : url(../images/delete.gif) !important;
-
- }
|