Merge pull request #24106 from eileenmcnaughton/offline
[civicrm-core.git] / ang / crmUI.css
CommitLineData
666a68e2
CW
1/* CSS rules for Angular module "crmUI" */
2
3/* In-place edit */
4.crm-container [crm-ui-editable] {
5 padding-left: 2px;
6 border: 2px dashed transparent;
7}
8.crm-container [crm-ui-editable]:hover,
9.crm-container [crm-ui-editable]:focus {
10 border: 2px dashed #d1d1d1;
11 cursor: pointer;
12 background-color: white !important;
13 color: initial !important;
14}
15.crm-container span[crm-ui-editable] {
16 display: inline-block !important;
17 padding-right: 2px;
18 min-height: 1em;
19 min-width: 3em;
20}
21.crm-container [crm-ui-editable]:empty:before {
22 content: attr(placeholder);
23 color: #9a9a9a;
24}