-
Notifications
You must be signed in to change notification settings - Fork 25
refactor: remaining css to tailwind #1 #1151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1e6d3d7 to
d123858
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR migrates remaining CSS utility classes to Tailwind equivalents, specifically replacing custom oc- prefixed classes with standard Tailwind classes.
oc-invisible-sr→sr-onlyfor screen reader only contentoc-cursor-pointer→cursor-pointerfor pointer cursor stylingoc-invisible→invisiblefor hiding elements
Reviewed Changes
Copilot reviewed 80 out of 80 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| Multiple test snapshot files | Updated snapshots to reflect CSS class name changes |
| Multiple Vue component files | Replaced custom CSS classes with Tailwind equivalents |
| Multiple SCSS/CSS files | Removed custom CSS rules now handled by Tailwind |
| Test files | Updated test assertions to check for new class names |
Comments suppressed due to low confidence (1)
packages/web-app-ocm/src/views/ConnectionsPanel.vue:1
- The CSS property
visibility: noneis invalid. The correct value should bevisibility: hidden.
<template>
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
bf79667 to
2ff53af
Compare
kulmann
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💪
packages/web-pkg/src/components/AppTemplates/PartialViews/LoadingScreen.vue
Outdated
Show resolved
Hide resolved
f19a103 to
384b8b1
Compare
…tailwind refactor: remaining css to tailwind #1
refs #937
Migration
oc-invisible-sr>sr-onlyoc-cursor-pointer>cursor-pointeroc-invisible>invisibleoc-hidden>hiddenFor the
oc-visible@classes, you generally want to sethiddenon the element and then something likesm:block(or whateverdisplayvalue fits). Foroc-hidden@it's the same but vice versa.