1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-09 08:42:50 +03:00

Merge pull request #3242 from matrix-org/jryans/terms-modal

Avoid visual glitch when terms appear for Integration Manager
This commit is contained in:
J. Ryan Stinnett
2019-07-24 14:27:43 +01:00
committed by GitHub
5 changed files with 49 additions and 19 deletions

View File

@@ -14,6 +14,17 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
/*
* To avoid visual glitching of two modals stacking briefly, we customise the
* terms dialog sizing when it will appear for the integrations manager so that
* it gets the same basic size as the IM's own modal.
*/
.mx_TermsDialog_forIntegrationsManager .mx_Dialog {
width: 60%;
height: 70%;
box-sizing: border-box;
}
.mx_TermsDialog_termsTableHeader {
font-weight: bold;
text-align: left;
@@ -21,6 +32,7 @@ limitations under the License.
.mx_TermsDialog_termsTable {
font-size: 12px;
width: 100%;
}
.mx_TermsDialog_service, .mx_TermsDialog_summary {