mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-04 11:56:05 +08:00
initial commit
This commit is contained in:
commit
1fc59be401
38 changed files with 31653 additions and 0 deletions
1
build/index.asset.php
Normal file
1
build/index.asset.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-react-refresh-runtime'), 'version' => '7a7febaf218bcb4733d0');
|
12744
build/index.js
Normal file
12744
build/index.js
Normal file
File diff suppressed because one or more lines are too long
1
build/index.js.map
Normal file
1
build/index.js.map
Normal file
File diff suppressed because one or more lines are too long
57
build/style-index.css
Normal file
57
build/style-index.css
Normal file
|
@ -0,0 +1,57 @@
|
|||
/*!***************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
|
||||
\***************************************************************************************************************************************************************************************************************************************/
|
||||
.mind-toolbar-icon {
|
||||
color: #e455df;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.mind-toolbar-dropdown-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
.mind-toolbar-dropdown-wrapper button {
|
||||
width: 100%;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
.mind-toolbar-dropdown-wrapper button .dashicon {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.mind-editor-toolbar-toggle {
|
||||
flex: 100%;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.mind-editor-toolbar-toggle button {
|
||||
color: #e455df;
|
||||
}
|
||||
.mind-editor-toolbar-toggle button:hover, .mind-editor-toolbar-toggle button:focus {
|
||||
color: #e455df;
|
||||
background: rgba(228, 85, 223, 0.05);
|
||||
}
|
||||
.mind-editor-toolbar-toggle svg {
|
||||
margin-top: -2px;
|
||||
margin-right: 6px;
|
||||
margin-bottom: -2px;
|
||||
}
|
||||
|
||||
.mind-popup {
|
||||
width: 800px;
|
||||
margin-top: 100px;
|
||||
background-color: rgb(243, 243, 243);
|
||||
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 25px 70px 10px rgba(0, 0, 0, 0.25);
|
||||
border: 1px solid rgba(255, 255, 255, 0.4);
|
||||
}
|
||||
.mind-popup .components-modal__header {
|
||||
padding: 24px 20px 12px;
|
||||
}
|
||||
.mind-popup .components-modal__content {
|
||||
padding: 0 20px 20px;
|
||||
}
|
||||
|
||||
.mind-popup-overlay {
|
||||
background-color: rgba(143, 135, 143, 0.25);
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=style-index.css.map*/
|
1
build/style-index.css.map
Normal file
1
build/style-index.css.map
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"./style-index.css","mappings":";;;AAGA;EACC,cAJO;EAKP;EACA;AAFD;;AAKA;EACC;AAFD;AAIC;EACC;EACA;EACA;AAFF;AAIE;EACC;AAFH;;AAQA;EACC;EACA;AALD;AAOC;EACC,cA7BM;AAwBR;AAOE;EAEC,cAjCK;EAkCL;AANH;AAUC;EACC;EACA;EACA;AARF;;AAaA;EACC;EACA;EACA;EACA;EACA;AAVD;AAYC;EACC;AAVF;AAYC;EACC;AAVF;;AAaA;EACC;AAVD,C","sources":["webpack://mind/./src/style.scss"],"sourcesContent":["$color: #e455df;\n$popup_padding: 20px;\n\n.mind-toolbar-icon {\n\tcolor: $color;\n\twidth: 20px;\n\theight: 20px;\n}\n\n.mind-toolbar-dropdown-wrapper {\n\twidth: 100%;\n\n\tbutton {\n\t\twidth: 100%;\n\t\tpadding-left: 8px;\n\t\tpadding-right: 8px;\n\n\t\t.dashicon {\n\t\t\tmargin-left: auto;\n\t\t}\n\t}\n}\n\n// Button in editor Toolbar.\n.mind-editor-toolbar-toggle {\n\tflex: 100%;\n\twhite-space: nowrap;\n\n\tbutton {\n\t\tcolor: $color;\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tcolor: $color;\n\t\t\tbackground: rgba($color, 5%);\n\t\t}\n\t}\n\n\tsvg {\n\t\tmargin-top: -2px;\n\t\tmargin-right: 6px;\n\t\tmargin-bottom: -2px;\n\t}\n}\n\n// Popup.\n.mind-popup {\n\twidth: 800px;\n\tmargin-top: 100px;\n\tbackground-color: rgb(243, 243, 243);\n\tbox-shadow: 0 0 2px 0 rgba(0, 0, 0, 20%), 0 25px 70px 10px rgba(0, 0, 0, 25%);\n\tborder: 1px solid rgba(255, 255, 255, 40%);\n\n\t.components-modal__header {\n\t\tpadding: 24px $popup_padding 12px;\n\t}\n\t.components-modal__content {\n\t\tpadding: 0 $popup_padding $popup_padding;\n\t}\n}\n.mind-popup-overlay {\n\tbackground-color: rgba(143, 135, 143, 25%);\n}\n"],"names":[],"sourceRoot":""}
|
Loading…
Add table
Add a link
Reference in a new issue