Fossil

Check-in [081194bb]
Login

Check-in [081194bb]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:CSS tweak for disabled submit buttons in darkmode skin, based on forum feedback.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 081194bb5e0f6a5cca67e854cee10ededf2060a8fa84f039aff2fa9e6510d29f
User & Date: stephan 2023-03-19 14:25:00
Context
2023-03-23
14:48
Correct two broken links in the 'Fossil vs. Git' document. ... (check-in: f8baa04b user: danield tags: trunk)
2023-03-19
14:25
CSS tweak for disabled submit buttons in darkmode skin, based on forum feedback. ... (check-in: 081194bb user: stephan tags: trunk)
2023-03-17
12:28
Update the built-in SQLite to the first 3.41.2 beta, for testing. ... (check-in: 36b17e51 user: drh tags: trunk)
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to skins/darkmode/css.txt.

123
124
125
126
127
128
129




130
131
132
133
134
135
136
}
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background-color: #FF4500f0;
  color: rgba(24,24,24,0.8);
  outline: 0




}
.button:focus,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: 2px outset #333;







>
>
>
>







123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
}
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background-color: #FF4500f0;
  color: rgba(24,24,24,0.8);
  outline: 0
}
input[type=submit]:disabled {
  color: #363636;
  background-color: #707070;
}
.button:focus,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: 2px outset #333;