Skip to content

Commit

Permalink
Merge branch 'master' into 2.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pstoellberger committed Aug 12, 2013
2 parents 4d02b1d + b596147 commit 0e9d60d
Show file tree
Hide file tree
Showing 13 changed files with 718 additions and 46 deletions.
44 changes: 28 additions & 16 deletions css/saiku/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ span.clear_axis {
}

/** blockUI */
.processing_container {
.processing_container, .blockOverlay {
position: fixed;
top: 0;
left: 0;
Expand All @@ -1099,28 +1099,28 @@ span.clear_axis {
background-color: #fff;
opacity: 0.5;
z-index: 9999;
padding: 20px;
}
.processing {
border: 3px solid #EEE;
.processing_content {
padding: 5px;
display: inline;
}
.processing, .blockElement {
border-radius: 3px;
border: 1px solid #CCC;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 0 10px #EEE;
-moz-box-shadow: 0 0 10px #EEE;
-webkit-box-shadow: 0 0 10px #EEE;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.10);
-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.10);
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.10);
z-index: 10001;
background-color: #fff;
position: fixed;
width: 50%;
left: 25%;
top: 48%;
}
.processing_inner {
border: 1px solid #CCC;
border-radius: 1px;
-moz-border-radius: 1px;
-webkit-border-radius: 1px;
padding: 10px 5px 10px 10px;
width: 20%;
min-width: 200px;
left: 40%;
top: 45%;
padding: 20px;
}
.processing_image {
display: inline-block;
Expand All @@ -1131,6 +1131,18 @@ span.clear_axis {
margin-right: 5px;
}

.saiku_logo {
display: inline-block;
background-image: url('../../../images/src/saiku_32x32.png');
background-repeat: no-repeat;
background-position: 50% 50%;
width: 32px;
height: 32px;
padding: 5px;
margin-right: 20px;
}


/** Workspace toolbar. */

.workspace_toolbar {
Expand Down
10 changes: 7 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,27 @@
<div class="processing_container"></div>
<div class="processing">
<div class="processing_inner">
<span class="processing_image">&nbsp;</span>
<span class="processing_message i18n">Loading...</span>
<span class="saiku_logo">&nbsp;</span>
<div class="processing_content">
<span class="processing_image">&nbsp;</span>
<span class="processing_message i18n">Loading...</span>
</div>
</div>
</div>


<!-- jQuery 1.7.2 , jQuery UI 1.8.14-->

<script src="js/jquery/jquery.min.js" type="text/javascript"></script>

<script src="js/jquery/jquery-ui.min.js" type="text/javascript"></script>

<script src="js/jquery/jquery.contextMenu.js"></script>
<script src="js/jquery/jquery-mobile-touch.js"></script>
<script type="text/javascript" src="js/jquery/jquery.blockUI.js"></script>


<script type="text/javascript" src="js/fancybox/jquery.fancybox-1.3.4.pack.js"></script>


<!-- Backbone.js and deps -->

Expand Down
Loading

0 comments on commit 0e9d60d

Please sign in to comment.