Skip to content
Snippets Groups Projects
Commit 8a52957d authored by Dante Aléo's avatar Dante Aléo :pouting_cat:
Browse files

Merge branch '60-atualizar-campos-da-pagina-de-visualizacao-dos-equipamentos-2' into 'development'

Resolve "Estilizar os campos da página de Visualização dos Equipamentos"

Closes #60

See merge request !64
parents d95aa7b0 d8106b25
No related branches found
No related tags found
1 merge request!64Resolve "Estilizar os campos da página de Visualização dos Equipamentos"
......@@ -19,9 +19,12 @@ export class EditMachineComponent implements OnInit {
events = []
constructor() { }
ngOnInit() {
<<<<<<< HEAD
=======
// this._eventService.getEvents().subscribe(
// res => this.events = res,
// err => console.log(err)
)
>>>>>>> origin
}
}
......@@ -9,6 +9,22 @@
<h3> {{machine.serial_number}} </h3>
<button class="btn"(click)="changeButton(i)">Mais Informações</button>
<<<<<<< HEAD
<span class="more_text">
<h4>Informações Gerais</h4>
<p>Número de Série: {{machine.serial_number}}</p>
<p>Sala: {{machine.room}}</p>
<p>Data da última manutenção: {{machine.date_last_maintenance}}</p>
<p>Data da próxima manutenção: {{machine.date_next_maintenance}}</p>
<p>Estado da máquina: {{machine.Status}}</p>
<h4>Endereço</h4>
<p>Rua: {{machine.address}}</p>
<p>Número: {{machine.address_number}}</p>
<p>Bairro: {{machine.district}}</p>
<p>Cidade: {{machine.city}}</p>
<p>Estado: {{machine.state}}</p>
=======
<span class="more_text">
<p><b>Número de Série:</b> {{machine.serial_number}}</p>
<p><b>Sala: </b> {{machine.room}}</p>
......@@ -22,6 +38,7 @@
<p><b>Bairro:</b> {{machine.district}}</p>
<p><b>Cidade:</b> {{machine.city}}</p>
<p><b>Estado:</b> {{machine.state}}</p>
>>>>>>> origin
</span>
</div>
</div>
......
......@@ -6,24 +6,26 @@
text-align: justify;
hyphens: auto;
font-family: $font-default;
color: #000000;
color: $text-dark;
h2 {
font-family: $font-header;
font-weight: bolder;
font-size: 36px;
color: $text-dark;
}
h3 {
color: $text-dark;
padding: 10px;
}
h4 {
font-size: 22px;
margin-top: 30px;
font-weight: bolder;
}
p {
color: $text-dark;
text-indent: 30px;
font-size: 18px;
line-height: 1.41;
}
......@@ -33,11 +35,11 @@
.btn {
border-width: 4px;
border-radius: 8px;
font-size: 18px;
font-family: $font-default;
cursor: pointer;
display: inline-block;
color: $text-dark;
display: inline-block;
font-size: 18px;
font-family: $font-default;
}
// Imagens
......@@ -53,11 +55,12 @@
.photos-btn {
align-items: center;
background-color: #b0cfed;
background-color: #b0cfed;
padding: 5px;
border-radius: 3%;
}
//Tag para o botao "Mais informacoes"
.more_text {
display: none;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment