Commit 21f53806 authored by Fatih Acet's avatar Fatih Acet

Merge branch '25780-reveal-variables-button-may-overrun-width-of-screen' into 'master'

Resolve "Reveal Variables button may overrun width of screen"

Closes #25780

See merge request !8221
parents 665dd387 50ae00dc
......@@ -929,8 +929,32 @@ pre.light-well {
.variables-table {
table-layout: fixed;
&.table-responsive {
border: none;
}
.variable-key {
width: 30%;
width: 300px;
max-width: 300px;
overflow: hidden;
word-wrap: break-word;
// override bootstrap
white-space: normal!important;
@media (max-width: $screen-sm-max) {
width: 150px;
max-width: 150px;
}
}
.variable-value {
@media(max-width: $screen-xs-max) {
width: 150px;
max-width: 150px;
overflow: hidden;
word-wrap: break-word;
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment