We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.setting-name { width: 100% }
1 parent 38a76f3 commit 54089e6Copy full SHA for 54089e6
src/librustdoc/html/static/css/settings.css
@@ -33,10 +33,6 @@
33
padding-bottom: 1px;
34
}
35
36
-.radio-line .setting-name {
37
- width: 100%;
38
-}
39
-
40
.radio-line .choice {
41
margin-top: 0.1em;
42
margin-bottom: 0.1em;
src/librustdoc/html/static/js/settings.js
@@ -135,7 +135,7 @@
135
// This is a select setting.
136
output += `\
137
<div class="radio-line" id="${js_data_name}">
138
- <span class="setting-name">${setting_name}</span>
+ <div class="setting-name">${setting_name}</div>
139
<div class="choices">`;
140
onEach(setting["options"], option => {
141
const checked = option === setting["default"] ? " checked" : "";
0 commit comments