Merge pull request #21993 from mattwire/aclcachequery2
[civicrm-core.git] / ang / crmUI.css
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 }