Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Bug 845115 - Calendar - Account Details Screen Update #8782

Merged
merged 1 commit into from
Apr 2, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions apps/calendar/style/forms.css
Original file line number Original file line Diff line number Diff line change
@@ -1,10 +1,10 @@
/* generic stuff that will probably live in the building blocks */ /* generic stuff that will probably live in the building blocks */


form, fieldset, input, textarea { form, fieldset, input, textarea {
border: 0px; border: 0;
background-color: transparent; background-color: transparent;
padding: 0px; padding: 0;
margin: 0px; margin: 0;
} }


input, textarea { input, textarea {
Expand All @@ -22,16 +22,21 @@ input[type="checkbox"] {


form, form,
form ol { form ol {
margin: 0px; margin: 0;
padding: 0px; padding: 0;
} }


/* for calendar */ /* for calendar */


form li { form ol {
padding: 0.25rem; margin-top: 1.5rem;
} }


form li { form li {
margin: 1rem 2rem; padding: 0 1.5rem 1rem;
} }

form li input {
font-size: 1.7rem !important;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hate that we have to have !important here, but it seems like building blocks is overly specific for this selector. Can land for now, but it would be nice to fix.

}