forked from MetaTunes/ProcessDbMigrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProcessDbMigrate.css
39 lines (32 loc) · 3.15 KB
/
ProcessDbMigrate.css
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
/* modify page edit in target environments */
#Inputfield_dbMigrateLogChanges .noDisplay { display: none; }
#Inputfield_dbMigrateRuntimeAction .full-width { width: 100%; }
/* Special repeater rows */
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-color: transparent; outline: 1px solid transparent !important; }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.fields-new:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #615a5a, #295f1b 50%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.fields-changed:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #62be48, #295f1b 25%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.fields-removed:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #295f1b, #433e3e 50%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.templates-new:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #615a5a, #845333 50%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.templates-changed:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #dc8f62, #845333 25%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.templates-removed:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #845333, #433e3e 50%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.pages-new:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #615a5a, #0e54d7 50%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.pages-changed:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #5e7ab3, #0e54d7 25%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.pages-removed:not(.InputfieldRepeaterDeletePending):not(.InputfieldRepeaterItemRequested) > label { background-image: linear-gradient(to right, #0e54d7, #433e3e 50%); }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.has-wand > label .InputfieldRepeaterItemLabel:before { font-family:'FontAwesome'; color: #e0cfe8; content:"\f0d0"; display:inline-block; margin-right:6px; }
#wrap_Inputfield_dbMigrateItem .InputfieldRepeaterItem.has-arrows > label .InputfieldRepeaterItemLabel:before { font-family:'FontAwesome'; color: #e0cfe8; content:"\f0d0\f160"; display:inline-block; margin-right:6px; }
/* Increase or decrease row height on mouse click */
.migration-table-text {
max-width: 20vw;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.migration-table-text:hover {
max-width: 20vw;
white-space: normal;
overflow: visible;
text-overflow: clip;
}
tr:has(.migration-table-text):hover {
background-color: #dbde9e;
}