芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/.cache/admin/src/components/Webhooks/EventInput/Wrapper.js
/** * * Wrapper * */ import styled from 'styled-components'; import { sizes } from '@buffetjs/styles'; const Wrapper = styled.div` padding-top: 3px; padding-bottom: 8px; table { width: 100%; border-radius: ${sizes.borderRadius}; overflow: hidden; } tr { &:before { content: '-'; position: absolute; left: 20px; display: inline-block; width: calc(100% - 40px); height: 1px; margin-top: -1px; line-height: 1.1em; color: transparent; background-color: #f6f6f6; } &:first-of-type:before { left: 0; height: 2px; width: 100%; background-color: #fafafb; z-index: 1; } } thead { background-color: #fafafb; td { height: 41px; text-align: center; font-size: 13px; font-weight: 500; } } tbody { border-bottom-left-radius: ${sizes.borderRadius}; border-bottom-right-radius: ${sizes.borderRadius}; box-shadow: inset 0px 0px 0px 1px #f6f6f6; td { height: 54px; padding-top: 3px; input[type='checkbox']:disabled:before { background-color: #e8e5e5; } &:first-of-type { width: 200px; padding-left: 30px; text-transform: capitalize; label { width: fit-content; font-weight: 500; cursor: pointer; } } &:not(:first-of-type) > div { display: block; width: fit-content; margin: 0 auto; } } } `; export default Wrapper;