Skip to content
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

KG - Removing Unintentional Service Calendar Styles #678

Merged
merged 1 commit into from
Sep 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 2 additions & 26 deletions app/assets/stylesheets/dashboard/service_calendar.sass
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,8 @@
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR~
// TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.~
.calendar-row
border: 1px solid #DDDDDD
margin-top: 10px
margin-bottom: 10px

.visit-name
word-wrap: break-word

.border-top
border-top: 1px solid black

.section_header
background-color: #adadad !important

.sub_section_header
background-color: #ccc !important

table
th
background: #113967
border: 1px solid white
color: white
tr.check_visit_column_headers
th
background: #113967
.user-view-ssr-modal
width: 95%

.no-padding
padding: 0
padding: 0
6 changes: 3 additions & 3 deletions app/views/dashboard/service_calendars/_visit_groups.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
- visit_groups.each_with_index do |visit_group, index|
%th.visit_group_box.col-sm-1
.row.text-center
.no-padding.xs-col-4.text-center
.col-xs-4.no-padding.text-center
%span{ id: "visit-before-display-#{visit_group.id}" }= visit_group.window_before || 0
.no-padding.xs-col-4.text-center
.col-xs-4.no-padding.text-center
%span{ id: "visit-day-display-#{visit_group.id}" }= visit_group.day
.no-padding.xs-col-4.text-center
.col-xs-4.no-padding.text-center
%span{ id: "visit-after-display-#{visit_group.id}" }= visit_group.window_after || 0
.row.visit_group_names.text-center
.col-sm-12.text-center{ data: { visit_group_id: visit_group.id } }
Expand Down