While not full width this gives a nice trade off between improved screen use space and readibility. The old value was 80 so this gives 25% more screen space. See T73223
16 lines
343 B
CSS
16 lines
343 B
CSS
/* Prevent Long enum lists */
|
|
.field-body {
|
|
display: block;
|
|
width: 100%;
|
|
max-height: 245px;
|
|
overflow-y: auto !important;
|
|
}
|
|
|
|
/* Hide home icon in search area */
|
|
.wy-side-nav-search > a:hover {background: none; opacity: 0.9}
|
|
.wy-side-nav-search > a.icon::before {content: none}
|
|
|
|
.wy-nav-content {
|
|
max-width: 1000px !important;
|
|
}
|