15b11f3c by Marty Penner

Add an indicator to unfilled group titles

1 parent a162b02a
...@@ -1314,7 +1314,8 @@ h6.fieldset-heading { ...@@ -1314,7 +1314,8 @@ h6.fieldset-heading {
1314 } 1314 }
1315 1315
1316 .option-groups-region .ui-icon ~ .ui-icon { 1316 .option-groups-region .ui-icon ~ .ui-icon {
1317 left: -15px; 1317 left: -15px;
1318 cursor: pointer;
1318 } 1319 }
1319 1320
1320 .option-groups-region .field-option .ui-icon { 1321 .option-groups-region .field-option .ui-icon {
...@@ -1383,7 +1384,8 @@ h6.fieldset-heading { ...@@ -1383,7 +1384,8 @@ h6.fieldset-heading {
1383 1384
1384 .option-groups-region .group-title, 1385 .option-groups-region .group-title,
1385 .option-groups-region .editable-group-title { 1386 .option-groups-region .editable-group-title {
1386 width: 400px; 1387 max-width: 76%;
1388 min-width: 50px;
1387 min-height: 15px; 1389 min-height: 15px;
1388 position: relative; 1390 position: relative;
1389 left: -14px; 1391 left: -14px;
...@@ -1395,6 +1397,11 @@ h6.fieldset-heading { ...@@ -1395,6 +1397,11 @@ h6.fieldset-heading {
1395 overflow: hidden; 1397 overflow: hidden;
1396 cursor: pointer; 1398 cursor: pointer;
1397 top: 2px; 1399 top: 2px;
1400 box-shadow: 0 0 2px 2px rgb(33, 117, 155);
1401 }
1402
1403 .option-groups-region .filled-title {
1404 box-shadow: none;
1398 } 1405 }
1399 1406
1400 .option-groups-region .group-title:hover { 1407 .option-groups-region .group-title:hover {
......