1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/*
This file is part of Ext JS 3.4
Copyright (c) 2011-2013 Sencha Inc
Contact: http://www.sencha.com/contact
GNU General Public License Usage
This file may be used under the terms of the GNU General Public License version 3.0 as
published by the Free Software Foundation and appearing in the file LICENSE included in the
packaging of this file.
Please review the following information to ensure the GNU General Public License version 3.0
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Build date: 2013-04-03 15:07:25
*/
body {
font-family:'lucida grande',tahoma,arial,sans-serif;
font-size:11px;
}
a {
color:#15428B;
}
a:link, a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#header {
background: #7F99BE url(images/layout-browser-hd-bg.gif) repeat-x center;
}
#header h1 {
font-size: 16px;
color: #fff;
font-weight: normal;
padding: 5px 10px;
}
#start-div h2 {
font-size: 12px;
color: #555;
padding-bottom:5px;
border-bottom:1px solid #C3D0DF;
}
#start-div p {
margin: 10px 0;
}
#details-panel h2 {
padding:10px 10px 0;
font-size:12px;
color:#15428B;
}
#details-panel p {
padding:10px 10px 0;
}
#details-panel pre {
border-top:1px dotted #ddd;
border-bottom:1px dotted #ddd;
margin-top:10px;
padding:0 5px;
background:#f5f5f5;
}
#details-panel .details-info {
margin:15px;
padding:15px;
border:1px dotted #999;
color:#555;
background: #f9f9f9;
}
.x-tab-panel-header-plain .x-tab-strip-top {
background: #DFE8F6 url(../../resources/images/default/tabs/tab-strip-bg.gif) repeat-x scroll center bottom !important;
}
.custom-accordion .x-panel-body{
background:#ffe;
text-align:center;
}
.custom-accordion .x-panel-body p {
font-family:georgia,serif;
padding:20px 80px !important;
font-size:18px;
color:#15428B;
}
.custom-accordion .x-panel-header-text {
font-weight:bold;
font-style:italic;
color:#555;
}
#form-panel .x-panel-footer {
background:#DFE8F6;
border-color:#99BBE8;
border-style:none solid solid;
border-width:0pt 1px 1px;
}
#table-panel .x-table-layout {
padding:5px;
}
#table-panel .x-table-layout td {
vertical-align:top;
padding:5px;
font-size: 11px;
}
.icon-send {
background-image:url(images/email_go.png) !important;
}
.icon-save {
background-image:url(images/disk.png) !important;
}
.icon-print {
background-image:url(images/printer.png) !important;
}
.icon-spell {
background-image:url(images/spellcheck.png) !important;
}
.icon-attach {
background-image:url(images/page_attach.png) !important;
}
.email-form .x-panel-mc .x-panel-tbar .x-toolbar {
border-top:1px solid #C2D6EF;
border-left:1px solid #C2D6EF;
border-bottom:1px solid #99BBE8;
margin:-5px -4px 0;
}
.inner-tab-custom .x-border-layout-ct {
background: #fff;
}
|