|
阅读:2308回复:3
Stylish 样式编辑器的编辑框有办法修改文字大小吗
我现在是这样写,但是只有
样式名称的部分有变大 把.textbox-input-box修改为*也一样 现在的编辑框文字太小了,不知道能不能修改大一点 @-moz-document url-prefix(about:stylish) { .textbox-input-box{font-size: 24px !Important;} } |
|
最新喜欢: |
|
1楼#
发布于:2015-09-30 18:28
@-moz-document url-prefix("about:stylish-edit") {
* { font-size: 20px !important } } |
|
|
2楼#
发布于:2015-09-30 21:45
范围不对吧
你参考下这个 @namespace url("http://www.w3.org/1999/xhtml");
@-moz-document regexp(".+?chrome://browser/content/devtools/codemirror/codemirror\.css.+") {
.devtools-monospace {
font-family: Consolas !important;
}
.CodeMirror {
font-size: 18px !important;
}
.cm-comment {
font-style: italic !important;
}
.cm-keyword {
font-weight: bold !important;
}
.CodeMirror-nonmatchingbracket {
font-weight: bold !important;
outline: none !important;
color: #f22 !important;
}
.CodeMirror-matchingbracket {
font-weight: bold !important;
outline: none !important;
color: #b7520e !important;
}
} |
|
|
3楼#
发布于:2015-10-01 11:41
|
|