Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/API-Reference/command/Commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -824,6 +824,18 @@ Sorts working set by file type
## CMD\_WORKING\_SORT\_TOGGLE\_AUTO
Toggles automatic working set sorting

**Kind**: global variable
<a name="CMD_TOGGLE_SHOW_WORKING_SET"></a>

## CMD\_TOGGLE\_SHOW\_WORKING\_SET
Toggles working set visibility

**Kind**: global variable
<a name="CMD_TOGGLE_SHOW_FILE_TABS"></a>

## CMD\_TOGGLE\_SHOW\_FILE\_TABS
Toggles file tabs visibility

**Kind**: global variable
<a name="CMD_KEYBOARD_NAV_UI_OVERLAY"></a>

Expand Down
2 changes: 1 addition & 1 deletion src/extensionsIntegrated/Phoenix/html/login-dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1 class="popup-title">{{welcomeTitle}}</h1>
{{signInBtnText}}
</button>
<div class="support-link">
<button id="phoenix-support-btn" class="btn dialog-button">
<button id="phoenix-support-btn" class="text-link">
<i class="fa fa-question-circle"></i>
{{supportBtnText}}
</button>
Expand Down
12 changes: 7 additions & 5 deletions src/extensionsIntegrated/Phoenix/html/profile-panel.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,16 @@
{{accountBtnText}}
</button>

<button id="phoenix-support-btn" class="btn dialog-button menu-button">
<i class="fa fa-question-circle"></i>
{{supportBtnText}}
</button>

<button id="phoenix-signout-btn" class="btn dialog-button menu-button signout">
<i class="fa fa-sign-out-alt"></i>
{{signOutBtnText}}
</button>

<div class="support-link">
<button id="phoenix-support-btn" class="text-link">
<i class="fa fa-question-circle"></i>
{{supportBtnText}}
</button>
</div>
</div>
</div>
47 changes: 42 additions & 5 deletions src/styles/Extn-UserProfile.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import "brackets_variables.less";

.profile-popup {
background-color: @bc-menu-bg;
background-color: @bc-panel-bg;
color: @bc-menu-text;
border-radius: @bc-border-radius;
box-shadow: 0 3px 9px @bc-shadow;
Expand Down Expand Up @@ -59,6 +59,7 @@

.user-plan {
color: #3c3;
//color: #2b7d2b;
font-size: 16px;
}

Expand All @@ -76,7 +77,7 @@
.progress-bar {
width: 100%;
height: 8px;
background-color: @bc-input-bg;
background-color: #fff;
border-radius: 4px;
overflow: hidden;
border: 1px solid @bc-btn-border;
Expand All @@ -90,8 +91,9 @@
}

.support-link {
margin-top: 20px;
margin-top: 6px;
text-align: center;
width: 100%;
}

.menu-button {
Expand All @@ -107,7 +109,34 @@
}

&.signout {
color: #f55;
color: #d44;
}
}

.text-link {
background: none;
border: none;
box-shadow: none;
cursor: pointer;
color: @bc-text-medium;
font-size: (@baseFontSize + 1);
padding: 8px 12px;
margin: 3px 0;
width: 100%;
text-align: center;
transition: color 0.2s ease;

i {
margin-right: 5px;
}

&:hover, &:focus {
color: @bc-text-emphasized;
outline: none;
}

&.menu-button {
text-align: left;
}
}

Expand Down Expand Up @@ -158,7 +187,7 @@
}

.dark .profile-popup {
background-color: @dark-bc-menu-bg;
background-color: @dark-bc-panel-bg;
color: @dark-bc-menu-text;
box-shadow: 0 3px 9px @dark-bc-shadow;

Expand Down Expand Up @@ -188,6 +217,14 @@
}
}

.text-link {
color: @dark-bc-text-thin-quiet;

&:hover, &:focus {
color: lighten(@dark-bc-text-thin-quiet, 30%);
}
}

.btn.dialog-button {
background-color: @dark-bc-btn-bg;
border: 1px solid @dark-bc-btn-border;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/brackets.less
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ a, img {

.user {
background: url("images/circle-user-solid.svg") center no-repeat;
background-size: 20px 20px;
background-size: 18px 18px;
}

#editor-holder {
Expand Down
Loading