/usr/share/civicrm/css/dashboard.css is in civicrm-common 4.7.1+dfsg-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | /**
* @file
* CSS for the jQuery.dashboard() plugin.
*
* Released under the GNU General Public License. See LICENSE.txt.
*/
#crm-container .column {
float: left;
margin: 0;
/* padding-bottom and min-height make sure that there is always a sizable drop zone. */
min-height: 400px;
height: 400px;
height: auto !important;
padding: 0 0 250px;
list-style-type: none;
}
#crm-container .column-0 {
width: 40%;
}
#crm-container .column-1 {
width: 60%;
}
/* The placeholder that indicates where a dragged widget will land if dropped now. */
#crm-container .placeholder {
margin: 5px;
border: 3px dashed pink;
}
/* Spacing between widgets. */
#crm-container li.widget, #crm-container li.empty-placeholder { margin: 6px 3px; }
#crm-container li.widget {
padding: 0px;
}
/* Spacing inside widgets. */
#crm-container .widget-wrapper {
padding: 0px;
overflow-x:auto;
margin-right: .25em
}
/* wodget header / title */
#crm-container .widget-header {
background:#CDE8FE none repeat scroll 0 0;
color:#000;
cursor:move;
display:inline;
font-size:1.2em;
margin:0;
}
/* widget content / body*/
#crm-container .widget-content {
background-color: #ffffff;
padding:0.5em;
}
/* Standards-browsers do this anyway because all inner block elements are floated. IE doesn't because it's crap. */
#crm-container .widget-controls {
background-color:#CDE8FE;
display:block;
padding:5px 0px;
}
#crm-container .widget-icon, #crm-container .full-screen-close-icon img {
display: block;
float: right;
margin-left: 2px;
margin-top: 2px;
cursor: pointer;
}
#full-screen-header {
display: block;
padding: .2em .4em;
background: #F0F0E8;
/* Although this is an <a> link, it doesn't have an href="" attribute. */
cursor: pointer;
}
/* Make the throbber in-yer-face. */
#crm-container .throbber {
text-align: right;
background:url("../packages/jquery/css/images/throbber.gif") no-repeat scroll 0 0 transparent;
height:20px;
width:20px;
}
#crm-container p.loadtext {
margin:1.6em 0 0 26px;
}
#crm-container .widget-controls .crm-i {
font-size: 14px;
padding: 0 6px;
font-weight: normal;
float: left;
cursor: pointer;
color: #222222;
opacity: .7;
}
#crm-container .widget-controls .crm-i:hover {
opacity: 1;
}
#crm-container .widget-controls .crm-i.fa-expand,
#crm-container .widget-controls .crm-i.fa-times {
float:right;
}
/* CSS for Dashlets */
#crm-container #available-dashlets {
width: 98%;
border: 2px dashed pink;
background-color: #999999;
min-height:40px;
}
#crm-container .dash-column {
border: 2px solid #696969;
min-height: 100px;
background-color: #EEEEEE
}
#crm-container .dashlets-header {
font-weight: bold;
}
#crm-container #dashlets-header-col-0 {
float: left;
width: 40%;
}
#crm-container #dashlets-header-col-1 {
margin-left: 42%;
width: 56%;
}
#crm-container #existing-dashlets-col-0 {
float: left;
width: 40%;
}
#crm-container #existing-dashlets-col-1 {
margin-left: 42%;
width: 56%;
}
#crm-container .portlet {
margin: .5em;
width: 75%;
display: inline-block;
}
#crm-container .portlet-header {
margin: 0.3em;
padding: 0.5em;
cursor: pointer;
}
#crm-container #available-dashlets .portlet {
width: auto;
}
#crm-container .portlet-header .crm-i {
float: right;
color: #52534D;
}
#crm-container .portlet-content {
padding: 0.4em;
}
#crm-container .ui-sortable-placeholder {
border: 1px dotted black;
visibility: visible !important;
height: 50px !important;
}
#crm-container .ui-sortable-placeholder * {
visibility: hidden;
}
|