Skip to content

Commit

Permalink
#2312 cleanup styles of site builder and separate sass generated files (
Browse files Browse the repository at this point in the history
#2346)

* #2312 cleanup styles of sitebuilder and separate sass generated files

* #2312 cleanup

* #2312 cleanup site builder styles and remove plugin styles

* #2312 remove unused files and packages

* #2312 Remove unused packages
  • Loading branch information
TheHadiAhmadi authored Dec 22, 2024
1 parent 8583360 commit 91d2370
Show file tree
Hide file tree
Showing 40 changed files with 953 additions and 1,316 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/_content/FluentCMS.Web.UI.Components/css/flowbite.min.css" />
<link rel="stylesheet" href="/_content/FluentCMS.Web.UI.Components/css/app.min.css" />
<link rel="stylesheet" href="/files/css/app.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/files/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/files/images/favicon-32x32.png">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/_content/FluentCMS.Web.UI.Components/css/flowbite.min.css" />
<link rel="stylesheet" href="/_content/FluentCMS.Web.UI.Components/css/app.min.css" />
<link rel="stylesheet" href="/files/css/app.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/files/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/files/images/favicon-32x32.png">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/_content/FluentCMS.Web.UI.Components/css/flowbite.min.css" />
<link rel="stylesheet" href="/_content/FluentCMS.Web.UI.Components/css/app.min.css" />
<link rel="stylesheet" href="/files/css/app.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/files/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/files/images/favicon-32x32.png">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,35 +1,4 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

$prefix: "f-";
$colors: (
"primary": "blue",
"success": "green",
"info": "cyan",
"danger": "red",
"warning": "yellow",
"secondary": "gray",
);

html {
font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

// BODY

body {
@apply bg-gray-50;
}

.dark body {
@apply bg-gray-800;
color-scheme: dark;
}

.hidden {
display: none;
}
@import './Base';

// COMPONENTS
@import "./Components/Accordion";
Expand Down Expand Up @@ -77,7 +46,3 @@ body {
@import './Components/Toast';
@import './Components/Tooltip';
@import './Components/Typography';


@import './Plugins/Block';
@import './Plugins/IFrame';
32 changes: 32 additions & 0 deletions src/Frontend/FluentCMS.Web.UI.Components/Styles/Flowbite/Base.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

$prefix: "f-";
$colors: (
"primary": "blue",
"success": "green",
"info": "cyan",
"danger": "red",
"warning": "yellow",
"secondary": "gray",
);

html {
font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

// BODY

body {
@apply bg-gray-50;
}

.dark body {
@apply bg-gray-800;
color-scheme: dark;
}

.hidden {
display: none;
}

This file was deleted.

This file was deleted.

Loading

0 comments on commit 91d2370

Please sign in to comment.