rename wrap/python/ to python/
* wrap/python/: Rename to... * python/: ... this. * wrap/: Delete. * Makefile.am, README, configure.ac, debian/python3-spot.examples, debian/rules, doc/org/.dir-locals.el.in, doc/org/init.el.in, spot/sanity/ipynb.test: Adjust.
This commit is contained in:
parent
74ec9c54c4
commit
34c3c1cedc
62 changed files with 24 additions and 48 deletions
BIN
python/ajax/css/loading.gif
Normal file
BIN
python/ajax/css/loading.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
114
python/ajax/css/tipTip.css
Normal file
114
python/ajax/css/tipTip.css
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
/* TipTip CSS - Version 1.2 */
|
||||
|
||||
#tiptip_holder {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_top {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_bottom {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_right {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_left {
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#tiptip_content {
|
||||
font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
color: #fff;
|
||||
text-shadow: 0 0 2px #000;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid rgba(255,255,255,0.25);
|
||||
background-color: rgb(25,25,25);
|
||||
background-color: rgba(25,25,25,0.92);
|
||||
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
|
||||
border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
box-shadow: 0 0 3px #555;
|
||||
-webkit-box-shadow: 0 0 3px #555;
|
||||
-moz-box-shadow: 0 0 3px #555;
|
||||
}
|
||||
|
||||
#tiptip_arrow, #tiptip_arrow_inner {
|
||||
position: absolute;
|
||||
border-color: transparent;
|
||||
border-style: solid;
|
||||
border-width: 6px;
|
||||
height: 0;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_top #tiptip_arrow {
|
||||
border-top-color: #fff;
|
||||
border-top-color: rgba(255,255,255,0.35);
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_bottom #tiptip_arrow {
|
||||
border-bottom-color: #fff;
|
||||
border-bottom-color: rgba(255,255,255,0.35);
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_right #tiptip_arrow {
|
||||
border-right-color: #fff;
|
||||
border-right-color: rgba(255,255,255,0.35);
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_left #tiptip_arrow {
|
||||
border-left-color: #fff;
|
||||
border-left-color: rgba(255,255,255,0.35);
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_top #tiptip_arrow_inner {
|
||||
margin-top: -7px;
|
||||
margin-left: -6px;
|
||||
border-top-color: rgb(25,25,25);
|
||||
border-top-color: rgba(25,25,25,0.92);
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
|
||||
margin-top: -5px;
|
||||
margin-left: -6px;
|
||||
border-bottom-color: rgb(25,25,25);
|
||||
border-bottom-color: rgba(25,25,25,0.92);
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_right #tiptip_arrow_inner {
|
||||
margin-top: -6px;
|
||||
margin-left: -5px;
|
||||
border-right-color: rgb(25,25,25);
|
||||
border-right-color: rgba(25,25,25,0.92);
|
||||
}
|
||||
|
||||
#tiptip_holder.tip_left #tiptip_arrow_inner {
|
||||
margin-top: -6px;
|
||||
margin-left: -7px;
|
||||
border-left-color: rgb(25,25,25);
|
||||
border-left-color: rgba(25,25,25,0.92);
|
||||
}
|
||||
|
||||
/* Webkit Hacks */
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
#tiptip_content {
|
||||
padding: 4px 8px 5px 8px;
|
||||
background-color: rgba(45,45,45,0.88);
|
||||
}
|
||||
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
|
||||
border-bottom-color: rgba(45,45,45,0.88);
|
||||
}
|
||||
#tiptip_holder.tip_top #tiptip_arrow_inner {
|
||||
border-top-color: rgba(20,20,20,0.92);
|
||||
}
|
||||
}
|
||||
139
python/ajax/css/trans.css
Normal file
139
python/ajax/css/trans.css
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
html {overflow-y:scroll;}
|
||||
|
||||
.ltl2tgba .ui-widget {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
input.formula {
|
||||
width: 720px;
|
||||
}
|
||||
|
||||
span#send {
|
||||
width: 60px;
|
||||
margin-left: 4px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
-moz-box-shadow: 2px 2px 2px #888888;
|
||||
-webkit-box-shadow: 2px 1px 2px #888888;
|
||||
box-shadow: 2px 2px 2px #888888;
|
||||
}
|
||||
|
||||
div.ltl2tgba {
|
||||
width: 800px;
|
||||
position:relative;
|
||||
left:0px;
|
||||
top:0px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
z-index:10;
|
||||
}
|
||||
|
||||
#spotlogo {
|
||||
position:fixed;
|
||||
left:10px;
|
||||
top:10px;
|
||||
z-index:1;
|
||||
}
|
||||
#lrdelogo {
|
||||
position:fixed;
|
||||
left:10px;
|
||||
bottom:84px;
|
||||
z-index:1;
|
||||
}
|
||||
#lip6logo {
|
||||
position:fixed;
|
||||
left:10px;
|
||||
bottom:10px;
|
||||
z-index:1;
|
||||
}
|
||||
#mailicon {
|
||||
position:fixed;
|
||||
left:10px;
|
||||
top:84px;
|
||||
z-index:1;
|
||||
}
|
||||
|
||||
.ltldoc {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table.ltltable
|
||||
{
|
||||
border-collapse:collapse;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.ltldocrow {
|
||||
font-weight: bold;
|
||||
vertical-align:top;
|
||||
}
|
||||
|
||||
.ltl2tgba div.ui-widget-content {
|
||||
padding: 3px;
|
||||
margin: 2px 0px;
|
||||
background: #eeeeee;
|
||||
}
|
||||
|
||||
.ltl2tgba h3 {
|
||||
font-size:1em;
|
||||
margin: 0;
|
||||
padding: 0px 0.2em 0px;
|
||||
border-bottom:1px solid #eee;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.floatright {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.colleft {
|
||||
float: left;
|
||||
width: 49%;
|
||||
}
|
||||
|
||||
.ltl2tgba .head .ui-icon {
|
||||
float: right;
|
||||
margin: 1px 0px;
|
||||
}
|
||||
|
||||
.ltl2tgba .formula, #tiptip_content .formula {
|
||||
font-family: monospace;
|
||||
font-weight: bold;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.ltl2tgba .error {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.ltl2tgba .parse-error {
|
||||
font-family: monospace;
|
||||
white-space: pre;
|
||||
color: red;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.ltl2tgba .ec-error {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.ltl2tgba .loading {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ltl2tgba .neverclaim, .ltl2tgba .accrun {
|
||||
font-family: monospace;
|
||||
white-space: pre;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
#ltl3ba-tab {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.ui-button-text-only .ui-button-text { padding: .1em .3em; }
|
||||
.ui-tabs .ui-tabs-nav li a { float: left; padding: .1em .3em; text-decoration: none; }
|
||||
Loading…
Add table
Add a link
Reference in a new issue