openreplay/frontend/app/styles/reset.css
Delirium d604f9920b
feat ui: dashboards redesign (#2230)
* feat ui: dashboards redesign start

* more cards

* fix ui: more different cards...

* feat ui: finish cards, all trigger, all icons

* change(ui): added missin const

* feature(ui): new dashboard modal

* feature(ui): new dashboard modal

* change(ui): new cards

* change(ui): dashboard redesign

* change(ui): dashboard redesign

* change(ui): dashboard redesign

* change(ui): modal context and alert form

* change(ui): table card show more with modal

* change(ui): examples

* change(ui): example categorize and other improvements

* change(ui): example categorize and other improvements

* change(ui): performance cards

* change(ui): insights card

* Various style updates in dashboards and other pages. (#2308)

* Various minor style updates

* Various style improvements

* Update ExampleCards.tsx

* change(ui): fixed an issue with card create

* change(ui): fixed an issue with card create

* change(ui): default filters and events order

* change(ui): random data

* Dashboards redesign - improvments (#2313)

* Various minor style updates

* Various style improvements

* Update ExampleCards.tsx

* various minor improvements in dashbaords.

* revised dashboard widget header

* change(ui): sessions by user

* change(ui): funnel example

* change(ui): modal height and scroll

* change(ui): example cards with data

* change(ui): example cards with data

* change(ui): funnel bar text color

* change(ui): example cards overlay click

* change(ui): path analysis filter card

---------

Co-authored-by: Shekar Siri <sshekarsiri@gmail.com>
Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com>
2024-06-27 19:47:34 +02:00

72 lines
1.1 KiB
CSS

* {
margin: 0;
padding: 0;
border-radius: 0;
text-decoration: none;
outline: none;
}
body, html {
height: 100%;
background: $gray-lightest;
font-family: 'Roboto', 'ArialMT', 'Arial';
font-size: 14px;
font-weight: 400;
color: $gray-darkest;
}
input, button {
background: none;
border: none;
border: solid thin transparent;
}
button {
font-weight: 400;
}
textarea:focus,
input:not(.ant-input-number-input, .ant-input, .nofocus):focus {
border: solid thin $teal !important;
}
/* body ::-webkit-scrollbar {
width: 2px;
height: 2px;
} */
* {
&::-webkit-scrollbar {
width: 2px;
height: 0;
}
&::-webkit-scrollbar-thumb {
background: transparent;
}
&::-webkit-scrollbar-track {
background: transparent;
}
&:hover {
&::-webkit-scrollbar-track {
background: #f3f3f3;
}
&::-webkit-scrollbar-thumb {
background: $gray-medium;
}
}
}
h1, h2, h3, h4, h5 {
font-family: 'Roboto', 'ArialMT', 'Arial';
font-weight: 500;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
button:focus {
outline: none;
}