Add: newStyleFormat option

This commit is contained in:
eight 2017-10-08 23:26:23 +08:00
parent 8007f47c09
commit 3cb1943648
4 changed files with 15 additions and 0 deletions

View File

@ -967,6 +967,12 @@
"optionsAdvancedContextDelete": {
"message": "Add 'Delete' in editor context menu"
},
"optionsAdvancedNewStyleFormat": {
"message": "Format of newly created userstyle"
},
"optionsAdvancedNewStyleFormatRegular": {
"message": "Regular"
},
"optionsActions": {
"message": "Actions"
},

View File

@ -9,6 +9,7 @@ var prefs = new function Prefs() {
'show-badge': true, // display text on popup menu icon
'disableAll': false, // boss key
'exposeIframes': false, // Add 'stylus-iframe' attribute to HTML element in all iframes
'newStyleFormat': 'regular', // 'regular' or 'usercss', the format of userstyle when creating a new style.
'popup.breadcrumbs': true, // display 'New style' links as URL breadcrumbs
'popup.breadcrumbs.usePath': false, // use URL path for 'this URL'

View File

@ -122,6 +122,13 @@
<span></span>
</span>
</label>
<label>
<span i18n-text="optionsAdvancedNewStyleFormat"></span>
<select id="newStyleFormat">
<option value="regular" i18n-text="optionsAdvancedNewStyleFormatRegular"></option>
<option value="usercss">Usercss</option>
</select>
</label>
</div>
</div>

View File

@ -95,6 +95,7 @@ label:not([disabled]):hover > :first-child {
button,
input[type=number],
input[type="color"],
select,
.onoffswitch {
width: 60px;
box-sizing: border-box;