diff --git a/css/tabs.less b/css/tabs.less index 873df40..d40e71f 100644 --- a/css/tabs.less +++ b/css/tabs.less @@ -14,7 +14,7 @@ max-width: 200px; padding: 0px 0px 0px 4px; margin-right: 3px; - opacity: .8; + opacity: .6; background: @background; border-radius: 2px 2px 0 0; color: @foreground; @@ -35,6 +35,10 @@ color: @foreground; opacity: 1; box-shadow: none; + + .close { + color: @accent; + } } &.dragging { @@ -57,7 +61,8 @@ .close { font-size: 18px; text-align: center; - color: @accent; + vertical-align: middle; + width: 18px; background: @background; position: relative; margin-left: 4px; diff --git a/js/sessions.js b/js/sessions.js index 389b857..bb64014 100644 --- a/js/sessions.js +++ b/js/sessions.js @@ -329,7 +329,6 @@ define([ editor.focus(); }); - var locationMemory = null; return { diff --git a/templates/tab.html b/templates/tab.html index 1df60f6..fe5aa95 100644 --- a/templates/tab.html +++ b/templates/tab.html @@ -6,6 +6,9 @@ title="{{fileName}}" class="tab {{animation}}" > - {{fileName}} {{#modified}}•{{/modified}} - × + {{fileName}} + + {{#modified}}≡{{/modified}} + {{^modified}}×{{/modified}} + \ No newline at end of file