mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-09 06:55:03 +00:00
* [Feature] : Settings on folder level (#1334) * feat(folder_settings): enable settings tab from folder, currently not using folder.bru * feat(folder_settings): read and write in folder settings only in headers, ignore folder.bru file il requests list * feat(folder_settings): merge collection and folder settings when sending network request * feat(folder_settings): remove console, testing headers merging working fine * feat(folder_settings): add missing endl for prettier check, remove redundant imports --------- Co-authored-by: Baptiste POULAIN <baptistepoulain@MAC882.local> Co-authored-by: Anoop M D <anoop.md1421@gmail.com> * feat: folder level scripts and tests * feat: folder level variables (#2530) --------- Co-authored-by: Baptiste Poulain <64689165+bpoulaindev@users.noreply.github.com> Co-authored-by: Baptiste POULAIN <baptistepoulain@MAC882.local> Co-authored-by: lohit <lohit.jiddimani@gmail.com>
57 lines
945 B
JavaScript
57 lines
945 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-weight: 600;
|
|
table-layout: fixed;
|
|
|
|
thead,
|
|
td {
|
|
border: 1px solid ${(props) => props.theme.table.border};
|
|
}
|
|
|
|
thead {
|
|
color: ${(props) => props.theme.table.thead.color};
|
|
font-size: 0.8125rem;
|
|
user-select: none;
|
|
}
|
|
td {
|
|
padding: 6px 10px;
|
|
|
|
&:nth-child(1) {
|
|
width: 30%;
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
width: 70px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-add-header {
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
input[type='text'] {
|
|
width: 100%;
|
|
border: solid 1px transparent;
|
|
outline: none !important;
|
|
background-color: inherit;
|
|
|
|
&:focus {
|
|
outline: none !important;
|
|
border: solid 1px transparent;
|
|
}
|
|
}
|
|
|
|
input[type='checkbox'] {
|
|
cursor: pointer;
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|