Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
192605c5
Commit
192605c5
authored
Feb 26, 2014
by
techird
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into gh-pages
parents
8059418b
2a0f726f
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
47 additions
and
140 deletions
+47
-140
social.js
dist/social.js
+2
-0
combobox.js
src/adapter/combobox.js
+1
-2
zoom.js
src/module/zoom.js
+2
-1
dropmenu.js
src/ui/dropmenu.js
+17
-12
menu.js
src/ui/menu.js
+2
-2
comboboxmenu.css
themes/default/css/comboboxmenu.css
+0
-107
dropmenu.css
themes/default/css/dropmenu.css
+23
-16
No files found.
dist/social.js
View file @
192605c5
...
...
@@ -120,6 +120,7 @@ $( function () {
$share_btn
.
appendTo
(
$panel
);
loadRecent
();
loadAvator
();
window
.
location
.
hash
=
''
;
}
function
loadAvator
()
{
...
...
@@ -153,6 +154,7 @@ $( function () {
sto
.
getFileUrl
(
path
,
{
success
:
function
(
url
)
{
$
.
ajax
(
{
cache
:
false
,
url
:
url
,
dataType
:
'text'
,
success
:
function
(
result
)
{
...
...
src/adapter/combobox.js
View file @
192605c5
...
...
@@ -95,8 +95,7 @@ KM.registerToolbarUI( 'fontfamily fontsize', function ( name ) {
temp
=
options
.
items
[
i
];
tempItems
.
push
(
temp
);
options
.
itemStyles
.
push
(
'font-size: '
+
temp
+
'px'
);
options
.
itemStyles
.
push
(
'font-size: '
+
temp
+
'px; height:'
+
(
temp
+
2
)
+
'px; line-height: '
+
(
temp
+
2
)
+
'px'
);
}
options
.
value
=
options
.
items
;
...
...
src/module/zoom.js
View file @
192605c5
...
...
@@ -69,7 +69,8 @@ KityMinder.registerModule( 'Zoom', function () {
'ready'
:
function
()
{
this
.
_zoomValue
=
1
;
},
'mousewheel'
:
function
(
e
)
{
// disable mouse wheel
'mousewheel_'
:
function
(
e
)
{
var
delta
=
e
.
originEvent
.
wheelDelta
;
var
me
=
this
;
...
...
src/ui/dropmenu.js
View file @
192605c5
//dropmenu 类
KM
.
ui
.
define
(
'dropmenu'
,
{
tmpl
:
'<ul class="kmui-dropdown-menu" aria-labelledby="dropdownMenu" >'
+
this
.
subTmpl
+
'<%if(data && data.length){for(var i=0,ci;ci=data[i++];){%>'
+
'<%if(ci.divider){%><li class="kmui-divider"></li><%}else{%>'
+
'<li <%if(ci.active||ci.disabled){%>class="<%= ci.active||
\'\'
%> <%=ci.disabled||
\'\'
%>" <%}%> data-value="<%= ci.value%>" data-label="<%= ci.label%>">'
+
'<a href="#" tabindex="-1"><em class="kmui-dropmenu-checkbox"><i class="kmui-icon-ok"></i></em><%= ci.label%></a>'
+
'</li><%}}%>'
+
'<%}%>'
+
'</ul>'
,
subTmpl
:
'<%if(data && data.length){for(var i=0,ci;ci=data[i++];){%>'
+
subTmpl
:
'<%if(data && data.length){for(var i=0,ci;ci=data[i++];){%>'
+
'<%if(ci.divider){%><li class="kmui-divider"></li><%}else{%>'
+
'<li <%if(ci.active||ci.disabled){%>class="<%= ci.active||
\'\'
%> <%=ci.disabled||
\'\'
%>" <%}%> data-value="<%= ci.value%>" data-label="<%= ci.label%>">'
+
'<a href="#" tabindex="-1"><em class="kmui-dropmenu-checkbox"><i class="kmui-icon-ok"></i></em><%= ci.label%></a>'
+
...
...
@@ -16,7 +21,7 @@ KM.ui.define('dropmenu', {
},
setData
:
function
(
items
){
this
.
root
().
html
(
$
.
parseTmpl
(
this
.
subTmpl
,
items
))
this
.
root
().
html
(
$
.
parseTmpl
(
this
.
subTmpl
,
items
))
;
return
this
;
},
...
...
@@ -27,15 +32,15 @@ KM.ui.define('dropmenu', {
});
return
this
;
},
//
show:function(){
//
if(this.trigger('beforeshow') === false){
//
return;
//
}else{
//
this.root().css({display:'block'});
//
this.trigger('aftershow');
//
}
//
return this;
//
},
show
:
function
(){
if
(
this
.
trigger
(
'beforeshow'
)
===
false
){
return
;
}
else
{
this
.
root
().
css
({
display
:
'block'
});
this
.
trigger
(
'aftershow'
);
}
return
this
;
},
init
:
function
(
options
)
{
var
me
=
this
;
var
eventName
=
{
...
...
src/ui/menu.js
View file @
192605c5
//menu 类
KM
.
ui
.
define
(
'menu'
,{
show
:
function
(
$obj
,
dir
,
fnname
,
topOffset
,
leftOffset
){
fnname
=
fnname
||
'position'
;
if
(
this
.
trigger
(
'beforeshow'
)
===
false
){
return
;
}
else
{
this
.
root
().
css
(
$
.
extend
({
display
:
'block'
},
$obj
?
{
top
:
$obj
[
fnname
]().
top
+
(
dir
==
'right'
?
0
:
$obj
.
outerHeight
())
-
(
topOffset
||
0
),
left
:
$obj
[
fnname
]().
left
+
(
dir
==
'right'
?
$obj
.
outerWidth
()
:
0
)
-
(
leftOffset
||
0
)
...
...
@@ -32,7 +32,7 @@ KM.ui.define('menu',{
if
(
!
$obj
.
data
(
'$mergeObj'
)){
$obj
.
data
(
'$mergeObj'
,
me
.
root
());
$obj
.
on
(
'wrapclick'
,
function
(
evt
){
me
.
s
how
(
)
me
.
s
upper
.
show
.
call
(
me
,
$obj
,
''
,
'offset'
)
});
me
.
register
(
'click'
,
$obj
,
function
(
evt
){
me
.
hide
()
...
...
themes/default/css/comboboxmenu.css
View file @
192605c5
...
...
@@ -81,113 +81,6 @@
/* 字体样式校正 */
/* 24 */
.kmui-combobox-fontsize
.kmui-combobox-item-4
.kmui-combobox-item-label
{
height
:
27px
;
line-height
:
27px
;
}
.kmui-combobox-fontsize
.kmui-combobox-item-4.kmui-combobox-checked
.kmui-combobox-icon
{
background-position
:
10px
5px
;
}
/* 32 */
.kmui-combobox-fontsize
.kmui-combobox-item-5
.kmui-combobox-item-label
{
height
:
31px
;
line-height
:
31px
;
}
.kmui-combobox-fontsize
.kmui-combobox-item-5.kmui-combobox-checked
.kmui-combobox-icon
{
background-position
:
10px
4px
;
}
/* 48 */
.kmui-combobox-fontsize
.kmui-combobox-item-6
.kmui-combobox-item-label
{
height
:
47px
;
line-height
:
47px
;
}
/*.kmui-combobox-fontsize .kmui-combobox-item-6 .kmui-combobox-icon {*/
/*height: 25px;*/
/*margin-bottom: 11px;*/
/*}*/
/*.kmui-combobox-fontsize .kmui-combobox-item-6.kmui-combobox-checked .kmui-combobox-icon {*/
/*background-position: 10px 7px;*/
/*}*/
/* 段落样式校正 */
/* h1 */
.kmui-combobox-paragraph
.kmui-combobox-item-1
.kmui-combobox-item-label
{
font-size
:
32px
;
height
:
36px
;
line-height
:
36px
;
}
.kmui-combobox-paragraph
.kmui-combobox-item-1
.kmui-combobox-icon
{
height
:
25px
;
margin-bottom
:
5px
;
}
.kmui-combobox-paragraph
.kmui-combobox-item-1.kmui-combobox-checked
.kmui-combobox-icon
{
background-position
:
10px
7px
;
}
/* h2 */
.kmui-combobox-paragraph
.kmui-combobox-item-2
.kmui-combobox-item-label
{
font-size
:
28px
;
height
:
27px
;
line-height
:
27px
;
}
.kmui-combobox-paragraph
.kmui-combobox-item-2
.kmui-combobox-icon
{
margin-bottom
:
5px
;
}
.kmui-combobox-paragraph
.kmui-combobox-item-2.kmui-combobox-checked
.kmui-combobox-icon
{
background-position
:
10px
10px
;
}
/* h3 */
.kmui-combobox-paragraph
.kmui-combobox-item-3
.kmui-combobox-item-label
{
font-size
:
24px
;
height
:
25px
;
line-height
:
25px
;
}
.kmui-combobox-paragraph
.kmui-combobox-item-3
.kmui-combobox-icon
{
height
:
25px
;
margin-bottom
:
5px
;
}
.kmui-combobox-paragraph
.kmui-combobox-item-3.kmui-combobox-checked
.kmui-combobox-icon
{
background-position
:
10px
11px
;
}
/* h4 */
.kmui-combobox-paragraph
.kmui-combobox-item-4
.kmui-combobox-item-label
{
font-size
:
18px
;
height
:
25px
;
line-height
:
25px
;
}
.kmui-combobox-paragraph
.kmui-combobox-item-4.kmui-combobox-checked
.kmui-combobox-icon
{
background-position
:
10px
6px
;
}
/* h5 */
.kmui-combobox-paragraph
.kmui-combobox-item-5
.kmui-combobox-item-label
{
font-size
:
16px
;
}
/* h6 */
.kmui-combobox-paragraph
.kmui-combobox-item-6
.kmui-combobox-item-label
{
font-size
:
12px
;
}
.kmui-combobox-menu
.kmui-combobox-item-disabled
{
color
:
black
;
opacity
:
0.3
;
...
...
themes/default/css/dropmenu.css
View file @
192605c5
.kmui-dropdown-menu
{
position
:
absolute
;
top
:
100%
;
left
:
0
;
z-index
:
1000
;
display
:
none
;
float
:
left
;
min-width
:
160px
;
padding
:
5px
;
margin
:
2px
0
0
;
font-size
:
14px
;
padding
:
5px
0
;
font-size
:
12px
;
list-style
:
none
;
background-color
:
#ffffff
;
border
:
1px
solid
#cccccc
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.15
);
border-radius
:
4px
;
-webkit-box-shadow
:
0
6px
12px
rgba
(
0
,
0
,
0
,
0.175
);
box-shadow
:
0
6px
12px
rgba
(
0
,
0
,
0
,
0.175
);
border-radius
:
3px
;
box-shadow
:
2px
5px
15px
rgba
(
0
,
0
,
0
,
.5
);
background-clip
:
padding-box
;
font-family
:
Arial
,
"Heiti SC"
,
"Microsoft Yahei"
;
}
.kmui-dropdown-menu.pull-right
{
...
...
@@ -31,13 +24,17 @@
overflow
:
hidden
;
background-color
:
#e5e5e5
;
}
.kmui-dropdown-menu
.kmui-divider
:first-child
{
display
:
none
;
}
.kmui-dropdown-menu
>
li
>
a
{
display
:
block
;
padding
:
3px
20px
;
padding
:
2px
15px
2px
30px
;
height
:
25px
;
line-height
:
25px
;
clear
:
both
;
font-weight
:
normal
;
line-height
:
1.428571429
;
color
:
#333333
;
white-space
:
nowrap
;
text-decoration
:
none
;
...
...
@@ -45,8 +42,18 @@
.kmui-dropdown-menu
>
li
>
a
:hover
,
.kmui-dropdown-menu
>
li
>
a
:focus
{
color
:
#262626
;
background-color
:
#d5e1f2
;
background
:
#0099f2
;
/* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background
:
url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOTlmMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDA5NmVlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwNzZkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=)
;
background
:
-moz-linear-gradient
(
top
,
#0099f2
0%
,
#4096ee
0%
,
#0076dd
100%
);
/* FF3.6+ */
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0%
,
#0099f2
),
color-stop
(
0%
,
#4096ee
),
color-stop
(
100%
,
#0076dd
));
/* Chrome,Safari4+ */
background
:
-webkit-linear-gradient
(
top
,
#0099f2
0%
,
#4096ee
0%
,
#0076dd
100%
);
/* Chrome10+,Safari5.1+ */
background
:
-o-linear-gradient
(
top
,
#0099f2
0%
,
#4096ee
0%
,
#0076dd
100%
);
/* Opera 11.10+ */
background
:
-ms-linear-gradient
(
top
,
#0099f2
0%
,
#4096ee
0%
,
#0076dd
100%
);
/* IE10+ */
background
:
linear-gradient
(
to
bottom
,
#0099f2
0%
,
#4096ee
0%
,
#0076dd
100%
);
/* W3C */
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#0099f2'
,
endColorstr
=
'#0076dd'
,
GradientType
=
0
);
/* IE6-8 */
color
:
white
;
}
.kmui-dropdown-menu
>
.active
>
a
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment