Fossil SCM
Add CSS rules to limit the width of input and textarea items to 95% of the available screen width.
Commit
dbcfcef7acedd355b5bcaef2315b7ad811dc260b39948ead3f11ca57dec0a259
Parent
02e7c86b3f40df7…
1 file changed
+6
+6
| --- src/default_css.txt | ||
| +++ src/default_css.txt | ||
| @@ -860,5 +860,11 @@ | ||
| 860 | 860 | // } |
| 861 | 861 | // #setup_skinedit_css_defaults > tbody > tr > td:nth-of-type(2) > div { |
| 862 | 862 | // max-width: 30em; |
| 863 | 863 | // overflow: auto; |
| 864 | 864 | // } |
| 865 | +input { | |
| 866 | + max-width: 95%; | |
| 867 | +} | |
| 868 | +textarea { | |
| 869 | + max-width: 95%; | |
| 870 | +} | |
| 865 | 871 |
| --- src/default_css.txt | |
| +++ src/default_css.txt | |
| @@ -860,5 +860,11 @@ | |
| 860 | // } |
| 861 | // #setup_skinedit_css_defaults > tbody > tr > td:nth-of-type(2) > div { |
| 862 | // max-width: 30em; |
| 863 | // overflow: auto; |
| 864 | // } |
| 865 |
| --- src/default_css.txt | |
| +++ src/default_css.txt | |
| @@ -860,5 +860,11 @@ | |
| 860 | // } |
| 861 | // #setup_skinedit_css_defaults > tbody > tr > td:nth-of-type(2) > div { |
| 862 | // max-width: 30em; |
| 863 | // overflow: auto; |
| 864 | // } |
| 865 | input { |
| 866 | max-width: 95%; |
| 867 | } |
| 868 | textarea { |
| 869 | max-width: 95%; |
| 870 | } |
| 871 |