Skip to content

Commit

Permalink
Revert "Fix #4781: Fixed zoom in Problem with code editor (oppia#4783)"
Browse files Browse the repository at this point in the history
This reverts commit 73be244.
  • Loading branch information
seanlip committed Apr 22, 2018
1 parent a4dbc9a commit 4d7752c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,8 @@
}

.conversation-skin-tutor-card {
padding-bottom: 0px;
padding-left: 0px;
padding-bottom: 0;
padding-left: 0;
}
}
</style>
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<!-- 87px is used to move the opppia avatar inside the conversation-skin-tutor-card div (so that it does not goes out of screen during zoom in). -->
<div class="progress-nav-bar" layout="row" layout-align="space-between center">
<div layout="row" layout-align="space-between center" style="background-color: white;">
<!-- Wrapping div on first button keeps the second button right-aligned
even when the first button is not present. -->
<div>
Expand Down Expand Up @@ -48,7 +47,7 @@

@media screen and (max-width: 959px) {
progress-nav .progress-nav-bar {
margin-left: 0px;
margin-left: 0;
}
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
<style>
.conversation-skin-tutor-card {
max-width: 100vw;
padding-bottom: 18px;
}

.conversation-skin-instruction-disabled {
Expand Down Expand Up @@ -135,7 +136,7 @@
}

.conversation-skin-tutor-card-top-section {
padding: 20px 20px 20px;
padding: 0 20px;
}

.conversation-skin-tutor-card-top-content p:not(:last-child) {
Expand All @@ -152,11 +153,11 @@
border: 3px solid #f3d140;
}

/* 87px is used to move the opppia avatar inside the conversation-skin-tutor-card div (so that it does not goes out of screen during zoom in). */
.conversation-skin-tutor-card,
.conversation-skin-future-tutor-card {
background: #fff;
border-radius: 2px;
padding-left: 87px;
padding-top: 20px;
text-align: left;
}

Expand All @@ -179,7 +180,6 @@
}

.conversation-skin-tutor-card-content {
background-color: white;
word-wrap: break-word;
}

Expand Down Expand Up @@ -218,7 +218,7 @@
.conversation-skin-inline-interaction {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
padding: 8px 20px 25px;
padding: 8px 20px 0;
position: relative;
}

Expand Down

0 comments on commit 4d7752c

Please sign in to comment.