commit | 03690330ff7b86d89668c910eb9cd60ff573c31b | [log] [tgz] |
---|---|---|
author | Becky Siegel <beckysiegel@google.com> | Mon Jul 24 10:27:27 2017 -0700 |
committer | Becky Siegel <beckysiegel@google.com> | Mon Jul 24 18:13:13 2017 +0000 |
tree | 716910d8d051f58bb224f0e25ef08735eb893353 | |
parent | 8e2036ee1a08177cd65444217e69d5716fd05021 [diff] |
Do not show overflow-y in gr-editable-content Because of the way iron-autogrow-textarea works, There will never be a need to have a vertical scroll bar, as the text area expands accordingly. In cases where a horizontal scrollbar appeared (due to long lines of text), the height of the textarea shrank just enough for a vertical scrollbar to be added as well. There also appeared to be some browser quirks in which the scroll bars jumped around when they shouldn't. In order to prevent this from happening, hide overflow-y. Additionally, add box-sizing: border-box to all iron-autogrow-textarea instances, so that scrollbars appear correctly in shadow dom. Bug: Issue 6500 Change-Id: I28f3b47d656a246decd693f637040748ec4fd3a0
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The IRC channel on freenode is #gerrit. An archive is available at: echelog.com.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Bazel and run the following:
git clone --recursive https://gerrit.googlesource.com/gerrit cd gerrit && bazel build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update & apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 7 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-centos7[:version]
To run a Ubuntu 15.04 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-ubuntu15.04[:version]
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.