Browse Source

Update styles

simov 6 years ago
parent
commit
6668a945a5
2 changed files with 3 additions and 3 deletions
  1. 2 2
      content/options.js
  2. 1 1
      css/options.css

+ 2 - 2
content/options.js

@@ -345,7 +345,7 @@ m.mount(document.querySelector('main'), {
             m('.m-summary', {
               onclick: (e) => state.origins[origin].expanded = !state.origins[origin].expanded
               },
-              m('.m-origin', origin),
+              m('.m-title', origin),
               m('.m-options',
                 !state.permissions[origin] ? m('span', m('strong', 'refresh')) : null,
                 state.origins[origin].match !== state.match ? m('span', 'match') : null,
@@ -493,7 +493,7 @@ m.mount(document.querySelector('main'), {
           m('.m-summary', {
             onclick: (e) => theme.expanded = !theme.expanded
             },
-            m('.m-origin', theme.name),
+            m('.m-title', theme.name),
             m('i.material-icons', {
               class: theme.expanded ? 'icon-arrow-up' : 'icon-arrow-down'
             })

+ 1 - 1
css/options.css

@@ -313,7 +313,7 @@ footer .icon-hidden {
   position: relative;
 }
 .m-list .m-summary:after { content: ''; display: block; clear: both; }
-.m-list .m-summary .m-origin {
+.m-list .m-summary .m-title {
   float: left;
   font-size: 16px;
   line-height: 28px;