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
6 changes: 6 additions & 0 deletions docs/API-Reference/command/Commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,12 @@ Opens support resources
## HELP\_GET\_PRO
Opens Phoenix Pro page

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

## HELP\_CANCEL\_TRIAL
Cancels Phoenix Pro trial

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

Expand Down
3 changes: 3 additions & 0 deletions src/command/Commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,9 @@ define(function (require, exports, module) {
/** Opens Phoenix Pro page */
exports.HELP_GET_PRO = "help.getPro"; // HelpCommandHandlers.js _handleLinkMenuItem()

/** Cancels Phoenix Pro trial */
exports.HELP_CANCEL_TRIAL = "help.cancelTrial";

/** Opens Phoenix License page */
exports.HELP_VIEW_LICENSE = "help.viewLicense"; // HelpCommandHandlers.js _handleLinkMenuItem()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,14 @@
opacity: 0.35;
}

.device-size-item-breakpoint-icon {
margin-right: 6px;
width: 12px;
text-align: center;
font-size: inherit;
color: rgba(100, 180, 255, 0.8);
}

#livePreviewModeBtn {
min-width: fit-content;
display: flex;
Expand Down
6 changes: 6 additions & 0 deletions src/nls/root/strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ define({
"LIVE_DEV_IMAGE_FOLDER_DIALOG_PLACEHOLDER": "Type folder path (e.g., assets/images/)",
"LIVE_DEV_IMAGE_FOLDER_DIALOG_HELP": "💡 Type folder path or leave empty to download in 'images' folder.",
"LIVE_DEV_IMAGE_FOLDER_DIALOG_REMEMBER": "Don't ask again for this project",
"DEVICE_SIZE_LIMIT_TITLE": "Responsive Preview Limit Reached",
"DEVICE_SIZE_LIMIT_MESSAGE": "Free accounts get a few responsive previews per day. Upgrade to Phoenix Pro for unlimited responsive previews across all device sizes.",
"IMAGE_SEARCH_LIMIT_TITLE": "Image search limit reached",
"IMAGE_SEARCH_LIMIT_MESSAGE": "You’ve used all {0} image searches for this month.<br>Start a paid Phoenix Pro plan to remove trial limits and continue searching.",
"IMAGE_SEARCH_LIMIT_MESSAGE_THROTTLE": "Image search is temporarily unavailable due to high demand.<br>Start a paid Phoenix Pro plan to remove trial limits and continue searching.",
Expand Down Expand Up @@ -695,6 +697,10 @@ define({
"CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}",
"CMD_SUPPORT": "{APP_NAME} Support",
"CMD_GET_PRO": "Get Phoenix Pro",
"CMD_CANCEL_TRIAL": "Cancel Phoenix Pro Trial",
"CANCEL_TRIAL_TITLE": "Cancel {0} Trial?",
"CANCEL_TRIAL_MESSAGE": "You have {0} days remaining in your Phoenix Pro trial. Cancelling cannot be undone. Are you sure you want to stop your trial?",
"CANCEL_TRIAL_STOP_BTN": "Stop Trial",
"CMD_VIEW_LICENSE": "View License",
"CMD_MANAGE_LICENSES": "Manage Licenses",
"CMD_USER_PROFILE": "{APP_NAME} Account",
Expand Down
20 changes: 20 additions & 0 deletions test/spec/LiveDevelopment-MultiBrowser-test-files/mediaQuery.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Media Query Test</title>
<style>
body { margin: 0; font-family: sans-serif; }
#content { padding: 20px; }
@media (max-width: 768px) {
#content { background: lightblue; }
}
@media (max-width: 480px) {
#content { background: lightgreen; }
}
</style>
</head>
<body>
<div id="content">Media query test page</div>
</body>
</html>
2 changes: 1 addition & 1 deletion tracking-repos.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"phoenixPro": {
"commitID": "1687d43c4e8f87cb01e9e7de614c2ce1e85e7a30"
"commitID": "968dd7418a998b9fbde87fd393e338d84d9ce4c3"
}
}
Loading