mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-05-13 20:56:17 +08:00
* Initial refactor commit
* ✅ Added build and tests CI/CD
* update: add src for admin settings
* update: incorrect constant names
* update: namespace
* add: accessibility settings
* update: webpack to output files inside a folder
* update: build output folders
* update: removed commented code
* update: npm scripts
* add: webpack config
* add: hooks
* update: move admin setting to the module folder
* update: assets loading logic
* update: add rule to move jsx props to multiline imporving readability
* add: connect modal
* update: hooks import for better readability
* update: replace functions with hooks
* add: connect module
* add: settings and get settings route
* add: hooks and contexts to get settings
* add: hooks
* add: notification component
* add: data api
* add: settings provider and connect settings
* add: husky
* fix: formatting and text-domain
* update: filter names
* fix: hook import
* add: set function for settings
* add: prop-types package
* update: refactor notification component and context
* update: remove filter for authorize url
* update: imports and exports of hooks
* update: plugin settings context filename and relevant imports
* update: icons and icon imports
* add: sidebar(wip)
* update: fix width of connect screen on mobile
* update: sidebar layout
* add: credit card and user arrow icons
* update: hidden wpfooter and fixed sidebar height
* update: sidebar layout
* add: basic page layouts
* update: sidebar layout
* add: sidebar menu, sidebar app bar and my account menu components
* update: add sidebar and menu settings
* update: add page layouts
* update: admin top bar
* add: bottom bar
* add: bottom bar and top bar
* add: bottom bar and top bar
* update: page content styling
* fix: styling
* fix: styling
* update: text domain
* update: added translations
* fix: admin top bar layout
* update: exports of icons
* update: exports of components
* add: aliases for imports and fix exports
* fix: height and styling of the layout
* fix: unhide wp footer
* update: keep widget menu open on page load (default)
* update: linter rules to move first prop to new line
* update: linter rules to move first prop to new line
---------
Co-authored-by: Ohad <ohad@elementor.com>
30 lines
453 B
CSS
30 lines
453 B
CSS
body {
|
|
background: #fff;
|
|
}
|
|
|
|
.wrap {
|
|
margin-top: 0;
|
|
}
|
|
|
|
html:not([dir='rtl']) #ea11y-app {
|
|
margin-left: -20px;
|
|
background: white;
|
|
height: calc(100vh - 32px);
|
|
}
|
|
|
|
html[dir='rtl'] #ea11y-app {
|
|
margin-right: -20px;
|
|
background: white;
|
|
height: calc(100vh - 32px);
|
|
}
|
|
|
|
#ea11y-app * {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.ea11y-textfield .MuiInputBase-input {
|
|
height: 40px;
|
|
padding: 8px 12px;
|
|
box-shadow: none;
|
|
border-color: rgba(12, 13, 14, 0.23);
|
|
}
|