1
0
mirror of https://gitee.com/coder-xiaomo/flashsale synced 2025-09-12 23:11:38 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加Metronic(作为LFS)

This commit is contained in:
2022-03-01 21:24:58 +08:00
parent 080ca33954
commit 465c454101
3280 changed files with 561969 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
## Bootstrap Markdown
Markdown editing meet Bootstrap.
| Version | Compatibility with Bootstrap |
| :---: | :---: |
| Bootstrap Markdown v2.x | **only** compatible with Bootstrap 3.x |
| Bootstrap Markdown v1.x | **only** compatible with Bootstrap 2.x |
Demo and documentation on [http://toopay.github.com/bootstrap-markdown/](http://toopay.github.com/bootstrap-markdown/)
### LICENSE
> Copyright 2013 Taufan Aditya
>
> Licensed under the Apache License, Version 2.0 (the "License");
> you may not use this file except in compliance with the License.
> You may obtain a copy of the License at
>
> http://www.apache.org/licenses/LICENSE-2.0
>
> Unless required by applicable law or agreed to in writing, software
> distributed under the License is distributed on an "AS IS" BASIS,
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
> See the License for the specific language governing permissions and
> limitations under the License.

View File

@@ -0,0 +1 @@
.md-editor{display:block;border:1px solid #ddd}.md-editor>.md-header,.md-editor .md-footer{display:block;padding:6px 4px;background:#fff}.md-editor>.md-header{margin: 0;}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px;overflow:auto}.md-editor>textarea{font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;outline:0;outline:thin dotted \9;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6)}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,62 @@
/**
* Bootstrap-Markdown.less
*
* @author Taufan Aditya @taufanaditya
* @copyright 2013 Taufan Aditya
*/
@import "variables.less"; // Point this into your bootstrap variables
@import "mixins.less"; // Point this into your bootstrap variables
.md-editor {
display: block;
border: 1px solid @table-border-color;
> .md-header, .md-footer {
display: block;
padding: 6px 4px;
background: @panel-default-heading-bg;
}
> .md-header {
margin: 0;
}
> .md-preview {
background: @panel-bg;
border-top: 1px dashed @table-border-color;
border-bottom: 1px dashed @table-border-color;
min-height: 10px;
overflow: auto;
}
> textarea {
font-family: @font-family-monospace;
font-size: @font-size-base;
outline: 0;
outline: thin dotted \9; /* IE6-9 */
margin: 0;
display: block;
padding: 0;
width: 100%;
border: 0;
border-top: 1px dashed @table-border-color;
border-bottom: 1px dashed @table-border-color;
border-radius: 0;
box-shadow: none;
background: @input-bg-disabled;
&:focus {
box-shadow: none;
background: @input-bg;
}
}
// Hover state
@color: @input-border-focus;
@color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
&.active {
border-color: @color;
outline: 0;
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
}
}

File diff suppressed because it is too large Load Diff