Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 267041 Details for
Bug 512057
Investigate showing a log (Make the log view an icon down the side? (just like the git and preferences))
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch to highlight log button
Bug512057_HighlightLogsButton.patch (text/plain), 4.50 KB, created by
Curtis Windatt
on 2017-02-28 17:20:56 EST
(
hide
)
Description:
Patch to highlight log button
Filename:
MIME Type:
Creator:
Curtis Windatt
Created:
2017-02-28 17:20:56 EST
Size:
4.50 KB
patch
obsolete
>diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/nls/root/messages.js b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/nls/root/messages.js >index 8ee1938..c8df675 100644 >--- a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/nls/root/messages.js >+++ b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/nls/root/messages.js >@@ -100,7 +100,7 @@ define({//Default message bundle > "openApp": "Open App", > "openAppTooltip": "Open the Deployed App", > "openLogs": "Logs", >- "openLogsTooltip": "Open the Logs", >+ "openLogsTooltip": "Open the Deploy Log", > "redeployConfirmationDialogTitle": "Stop and Redeploy?", > "redeployConfirmationDialogMessage": "Your application ${0} will be re-deployed.", > "redeployConfirmationDialogCheckboxMessage": "Don't ask me again.", >diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.html b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.html >index 5a8ea96..a100a07 100644 >--- a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.html >+++ b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.html >@@ -8,6 +8,6 @@ > </div> > <button id="runBarPlayButton" class="runBarButton playButton core-sprite-play"></button> > <button id="runBarStopButton" class="runBarButton stopButton core-sprite-stop"></button> >- <a id="runBarAppLink" class="runBarLink appLink core-sprite-open" target="_blank"></a> >- <a id="runBarLogsLink" class="runBarLink logsLink core-sprite-runlogs" target="_blank"></a> >+ <button id="runBarAppLink" class="runBarButton appLink core-sprite-open" target="_blank"></button> >+ <button id="runBarLogsLink" class="runBarButton logsLink core-sprite-runlogs" target="_blank"></button> > </div> >\ No newline at end of file >diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.js b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.js >index a7a70f6..020310b 100644 >--- a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.js >+++ b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.js >@@ -310,6 +310,12 @@ define([ > var newConfig = evnt.newValue; > > if((evnt.type === "changeState") && newConfig){ //$NON-NLS-0$ >+ this._logsLink.classList.remove('logStatusProgress'); >+ if (newConfig && newConfig.status){ >+ if (newConfig.status.State === "PROGRESS"){ >+ this._logsLink.classList.add('logStatusProgress'); >+ } >+ } > this._updateLaunchConfiguration(newConfig); > } else { > this._menuItemsCache = []; // clear launch configurations menu items cache >diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.css b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.css >index f9d4516..59ccc5c 100644 >--- a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.css >+++ b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/projects/RunBar.css >@@ -124,14 +124,48 @@ > margin-top: -3px; > } > >-.runBarButton.playButton { >- display: inline-block; >- font-size: 16px; >-} >- >-.runBarButton.stopButton { >- display: inline-block; >- font-size: 16px; >+.runBarWrapper .logStatusProgress { >+ border: 1px solid red; >+ animation: 2s animateBorder linear infinite forwards; >+} >+ >+/* WebKit prefix recommended for legacy browsers */ >+@-webkit-keyframes animateBorder { >+ 0%, 100% { >+ border-top-color: transparent; >+ border-left-color: red; >+ } >+ 25% { >+ border-right-color: transparent; >+ border-top-color: red; >+ } >+ 50% { >+ border-bottom-color: transparent; >+ border-right-color: red; >+ } >+ 75% { >+ border-left-color: transparent; >+ border-bottom-color: red; >+ } >+} >+ >+@keyframes animateBorder { >+ 0%, 100% { >+ border-top-color: transparent; >+ border-left-color: red; >+ } >+ 25% { >+ border-right-color: transparent; >+ border-top-color: red; >+ } >+ 50% { >+ border-bottom-color: transparent; >+ border-right-color: red; >+ } >+ 75% { >+ border-left-color: transparent; >+ border-bottom-color: red; >+ } > } > > .statusLabel { >@@ -214,29 +248,3 @@ > white-space: nowrap; > } > >-.runBarLink { >- -webkit-flex-grow: 0; /* Safari */ >- flex-grow: 0; >- -webkit-flex-shrink: 0; /* Safari */ >- flex-shrink: 0; >- margin: 0 2px; >-} >- >-.runBarLink:hover:not(.disabled) { >- color: #00AED1; >-} >- >-.runBarLink:hover { >- text-decoration: none; >-} >- >-.runBarLink.appLink{ >- font-size: 16px; >- height: 16px; >- line-height: 17px; >- margin: -6px 0 0 6px; >-} >- >-.logsLink { >- margin: -3px 0 0 10px !important; >-}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 512057
: 267041