Overview
Comment:Fix disabled class for tables
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: 5a639b57cbfd473806ef4a0afc4abe9d898b33e340111203cbfccd67579ef4a8
User & Date: bohwaz on 2022-01-05 17:28:56
Other Links: manifest | tags
Context
2022-01-05
19:02
Add quick search in accounting check-in: 14b8d4df86 user: bohwaz tags: trunk, stable
17:28
Fix disabled class for tables check-in: 5a639b57cb user: bohwaz tags: trunk, stable
12:56
Allow import of user-added column in accounts check-in: d8df4c7ccb user: bohwaz tags: trunk, stable
Changes

Modified src/www/admin/static/styles/06-tables.css from [1bbe7e128c] to [c0411a6083].

78
79
80
81
82
83
84
85
86



87
88
89
90
91
92
93
94
    width: 1%;
}

table.search th {
    background: rgba(var(--gSecondColor), 0.5);
}

table.list .disabled {
    color: var(--gBorderColor);



    background: var(--gLightBorderColor);
}

.userOrder .cur {
    background: rgba(var(--gSecondColor), 1.0);
    color: rgb(var(--gBgColor));
}








|

>
>
>
|







78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
    width: 1%;
}

table.search th {
    background: rgba(var(--gSecondColor), 0.5);
}

table.list tr.disabled {
    color: var(--gBorderColor);
}

table.list tr:nth-child(even).disabled {
    background: var(--gLightBackgroundColor);
}

.userOrder .cur {
    background: rgba(var(--gSecondColor), 1.0);
    color: rgb(var(--gBgColor));
}