-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fernando Maia da Mota
committed
Mar 19, 2014
1 parent
da9e8ab
commit 643e778
Showing
11 changed files
with
1,775 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Licenses | ||
Before you put this project in your production environment, | ||
please visit http://www.highcharts.com/ to learn more about | ||
the Highchart project, and https://developers.google.com/maps/terms | ||
to learn more about the Google GeoChart project. | ||
|
||
Saiku Chart Plus is a free and open source software. The UI, contained | ||
in this repository, is available under the terms of the Apache License | ||
Version 2. A copy is attached for your convenience. |
File renamed without changes.
File renamed without changes
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plugin title="Saiku Chart Plus" name="saiku-chart-plus"> | ||
<static-paths> | ||
<static-path url="/saiku-chart-plus/images" localFolder="images" /> | ||
<static-path url="/saiku-chart-plus/css" localFolder="css" /> | ||
<static-path url="/saiku-chart-plus/js" localFolder="js" /> | ||
</static-paths> | ||
</plugin> |
1,370 changes: 1,370 additions & 0 deletions
1,370
pentaho-plugin/saiku-chart-plus/saiku/plugins/saiku-chart-plus.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<version branch='TRUNK'>RC4</version> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#nav, #nav ul{ | ||
overflow: visible; | ||
z-index:100; | ||
margin:0; | ||
padding:0; | ||
list-style-type:none; | ||
list-style-position:outside; | ||
position:relative; | ||
line-height:1.5em; | ||
background: #fff; | ||
border-radius: 6px; | ||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45); | ||
} | ||
|
||
#nav a{ | ||
display:relative; | ||
padding:0px 5px; | ||
color:#555555; | ||
text-decoration:none; | ||
} | ||
|
||
.menu{ | ||
border: 1px solid #D5D5D5; | ||
margin: 2px 2px; | ||
} | ||
|
||
.menu:hover{ | ||
background:#155FB0; | ||
color: #FFFFFF; | ||
text-decoration: none; | ||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0); | ||
} | ||
|
||
.menu ul li:hover{ | ||
background:#155FB0; | ||
text-decoration: none; | ||
border-radius: 6px; | ||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45); | ||
} | ||
|
||
.menu a:hover{ | ||
color:#FFFFFF !important; | ||
} | ||
|
||
#nav li{ | ||
float:left; | ||
position:relative; | ||
} | ||
|
||
#nav ul { | ||
position:absolute; | ||
display:none; | ||
width:13em; | ||
top:1.5em; | ||
} | ||
|
||
#nav li ul a{ | ||
width:12em; | ||
height:auto; | ||
float:left; | ||
} | ||
|
||
#nav ul ul{ | ||
top:auto; | ||
} | ||
|
||
#nav li ul ul { | ||
left:12em; | ||
margin:0px 0 0 10px; | ||
} | ||
|
||
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul{ | ||
display:none; | ||
} | ||
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul{ | ||
display:block; | ||
} | ||
|
||
#nav .submenu:after { | ||
content: ">"; | ||
color: #666; | ||
position: absolute; | ||
top: 0; | ||
right: 3px; | ||
z-index: 1; | ||
} |
File renamed without changes.