mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
560b7cb9b5
Bug 613742: text in tab-modal prompts should be selectable. r=dolske, a=blocking
31 lines
441 B
CSS
31 lines
441 B
CSS
/* Tab Modal Prompt boxes */
|
|
tabmodalprompt {
|
|
width: 100%;
|
|
height: 100%;
|
|
-moz-box-pack: center;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
.mainContainer {
|
|
min-width: 20em;
|
|
}
|
|
|
|
.info\.body {
|
|
max-width: 45em;
|
|
-moz-user-focus: normal;
|
|
-moz-user-select: text;
|
|
cursor: text !important;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.infoContainer {
|
|
max-height: 10em;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
%ifdef XP_WIN
|
|
.buttonContainer {
|
|
-moz-box-pack: center;
|
|
}
|
|
%endif
|