Browse Source

Add missing images and fix few paths

These images are used in CSS rules, but are missing.

Images taken from MochaUI git repo.
adaptive-webui-19844
Gabriele 10 years ago
parent
commit
7b49ab2a48
  1. BIN
      src/Icons/skin/bg-dropdown.gif
  2. BIN
      src/Icons/skin/bg-header.gif
  3. BIN
      src/Icons/skin/bg-panel-header.gif
  4. BIN
      src/Icons/skin/collapse-expand.gif
  5. BIN
      src/Icons/skin/dock-tabs.gif
  6. BIN
      src/Icons/skin/logo-blank.gif
  7. BIN
      src/Icons/skin/logo.gif
  8. BIN
      src/Icons/skin/logo2.gif
  9. BIN
      src/Icons/skin/spacer.gif
  10. BIN
      src/Icons/skin/spinner-placeholder.gif
  11. BIN
      src/Icons/skin/spinner.gif
  12. BIN
      src/Icons/skin/toolbox-divider2.gif
  13. 12
      src/icons.qrc
  14. 6
      src/webui/www/public/css/Window.css
  15. 2
      src/webui/www/public/scripts/mocha-yc.js
  16. 2
      src/webui/www/public/scripts/mocha.js

BIN
src/Icons/skin/bg-dropdown.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 B

BIN
src/Icons/skin/bg-header.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 B

BIN
src/Icons/skin/bg-panel-header.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

BIN
src/Icons/skin/collapse-expand.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

BIN
src/Icons/skin/dock-tabs.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 404 B

BIN
src/Icons/skin/logo-blank.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 979 B

BIN
src/Icons/skin/logo.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
src/Icons/skin/logo2.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/Icons/skin/spacer.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 B

BIN
src/Icons/skin/spinner-placeholder.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 B

BIN
src/Icons/skin/spinner.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 793 B

BIN
src/Icons/skin/toolbox-divider2.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

12
src/icons.qrc

@ -319,10 +319,15 @@ @@ -319,10 +319,15 @@
<file>Icons/oxygen/wallet-open.png</file>
<file>Icons/oxygen/webui.png</file>
<file>Icons/skin/arrow-right.gif</file>
<file>Icons/skin/bg-dropdown.gif</file>
<file>Icons/skin/bg-handle-horizontal.gif</file>
<file>Icons/skin/bg-header.gif</file>
<file>Icons/skin/bg-panel-header.gif</file>
<file>Icons/skin/checking.png</file>
<file>Icons/skin/collapse-expand.gif</file>
<file>Icons/skin/connected.png</file>
<file>Icons/skin/disconnected.png</file>
<file>Icons/skin/dock-tabs.gif</file>
<file>Icons/skin/download.png</file>
<file>Icons/skin/downloading.png</file>
<file>Icons/skin/error.png</file>
@ -333,6 +338,9 @@ @@ -333,6 +338,9 @@
<file>Icons/skin/handle-icon-horizontal.gif</file>
<file>Icons/skin/handle-icon.gif</file>
<file>Icons/skin/knob.gif</file>
<file>Icons/skin/logo-blank.gif</file>
<file>Icons/skin/logo.gif</file>
<file>Icons/skin/logo2.gif</file>
<file>Icons/skin/mascot.png</file>
<file>Icons/skin/paused.png</file>
<file>Icons/skin/qbittorrent16.png</file>
@ -344,11 +352,15 @@ @@ -344,11 +352,15 @@
<file>Icons/skin/ratio.png</file>
<file>Icons/skin/seeding.png</file>
<file>Icons/skin/slider-area.gif</file>
<file>Icons/skin/spacer.gif</file>
<file>Icons/skin/spinner-placeholder.gif</file>
<file>Icons/skin/spinner.gif</file>
<file>Icons/skin/splash.png</file>
<file>Icons/skin/stalledDL.png</file>
<file>Icons/skin/stalledUP.png</file>
<file>Icons/skin/tabs.gif</file>
<file>Icons/skin/toolbox-divider.gif</file>
<file>Icons/skin/toolbox-divider2.gif</file>
<file>Icons/skin/uploading.png</file>
<file>Icons/oxygen/system-log-out.png</file>
</qresource>

6
src/webui/www/public/css/Window.css

@ -47,7 +47,7 @@ Required by: @@ -47,7 +47,7 @@ Required by:
.mochaTitlebar {
width: 100%;
overflow: hidden;
background: url(../images/spacer.gif?from=fafafa&to=e5e5e5);
background: url(../images/skin/spacer.gif?from=fafafa&to=e5e5e5);
}
.mochaTitlebar h3 {
@ -188,7 +188,7 @@ div.mochaToolbarWrapper.bottom { @@ -188,7 +188,7 @@ div.mochaToolbarWrapper.bottom {
left: 6px;
width: 16px;
height: 16px;
background: url(../images/spinner.gif) no-repeat;
background: url(../images/skin/spinner.gif) no-repeat;
}
.mochaIframe {
@ -334,7 +334,7 @@ div.mochaToolbarWrapper.bottom { @@ -334,7 +334,7 @@ div.mochaToolbarWrapper.bottom {
/* Example Window Themes */
#about_contentWrapper {
background: #e5e5e5 url(../images/logo2.gif) 3px 3px no-repeat;
background: #e5e5e5 url(../images/skin/logo2.gif) 3px 3px no-repeat;
}
#builder_contentWrapper {

2
src/webui/www/public/scripts/mocha-yc.js

File diff suppressed because one or more lines are too long

2
src/webui/www/public/scripts/mocha.js

@ -1623,7 +1623,7 @@ MUI.Window = new Class({ @@ -1623,7 +1623,7 @@ MUI.Window = new Class({
// Fix a mouseover issue with gauges in IE7
if ( MUI.ieLegacySupport && options.shape == 'gauge') {
this.windowEl.setStyle('backgroundImage', 'url(../images/spacer.gif)');
this.windowEl.setStyle('backgroundImage', 'url(../images/skin/spacer.gif)');
}
if (options.loadMethod == 'iframe') {

Loading…
Cancel
Save